在下面的代碼中,我該如何水平居中固定位置的div?我已經嘗試了幾件事,但沒有一件能在中心獲得正確的結果。將固定位置的div水平居中
我想從頂部100px的div,並水平居中。
<!DOCTYPE HTML>
<html>
<head>
<title> New Document </title>
<style type="text/css">
.myDiv {
position: fixed;
top:100px;
left:auto;
padding:10px;
background-color: blue;
color: white;
}
</style>
</head>
<body>
<div class="myDiv">Something went wrong. God save the Queen!</div>
</body>
</html>
你試過左:50%;或什麼? –
我做過了,但它仍然不在中心位置(我現在正在使用Firefox)。 – jmenezes
您需要在其上放一個負邊距,即div的一半寬度。然後它將被集中。 –