1. 使用絕對定位和width和height屬性:
```css
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
2. 使用百分比和絕對定位:
```css
.parent {
position: relative;
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
上一篇css border單位
下一篇漂亮的文本框css