用 css 將元素置中
Centering Percentage Width/Height Elements
要讓類似 dialog 的彈出 div 在頁面置中的小技巧。
要讓類似 dialog 的彈出 div 在頁面置中的小技巧。
- .center {
- position: absolute;
- left: 50%;
- top: 50%;
- /*
- Nope =(
- margin-left: -25%;
- margin-top: -25%;
- */
- /*
- Yep!
- */
- transform: translate(-50%, -50%);
- width: 40%;
- height: 50%;
- }
留言