True Center垂直和水平CSS Div
这个问题在这里已经有了答案:
该技术要求元素具有固定的宽度和高度。 你没有设置宽度和高度。 根据您的边框和边距,将其居中,宽度需要为190像素,高度需要为90像素。 使用line-height
和text-align
以及固定的宽度和高度使文本和边框居中。 尝试一下。
CSS
.center{
position: fixed;
top: 50%;
left: 50%;
width: 190px;
height: 90px;
line-height: 90px;
text-align: center;
margin-top: -50px;
margin-left: -100px;
border:5px solid black;
}
你可以用纯CSS做到这一点:
html {
width: 100%;
height: 100%;
}
body {
min-width: 100%;
min-height: 100%;
}
div.centeredBlueBox {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 300px;
height: 200px;
background-color: blue;
}
为width
和height
赋予具体值(例如: 300px
)并且不派生(如: auto
或30%
)是很重要的。
<div style='position:absolute; left:50%; top:50%; margin-left:(-)width_of_your_element/2px; margin-top:(-)height_of_your_element/2px'>
例如
<!DOCTYPE html>
<html>
<body>
<div style='border:1px solid; width:200px; height:200px; position:absolute; left:50%; top:50%; margin-left:-100px; margin-top:-100px'>hallo</div>
</body>
</html>
链接地址: http://www.djcxy.com/p/41651.html