I was trying to use the following way to center a <div> in another <div> by using CSS. but it only works in Chrome, but not IE9 and Firefox 13.0.1.
The following is my HTML file
<!DOCTYPE HTML>
<html>
<head>
<link type="text/css" rel="stylesheet" href="test.css">
<title>test</title>
</head>
<body>
<div class="container">
<div class="center">abc</div>
</div>
</body>
</html>
The following is my css file
.container{
position: relative;
border: 1px solid black;
width: 600px;
height: 400px;
position: relative;
}
.center {
border: 1px solid blue;
width: 300px;
height: 200px;
position: absolute;
margin-left: 50%;
margin-top: 50%;
top: -100px;
left: -150px;
}
More specifically, I found another easier problem. If i remove the code top: -100px in the above css file, the bottom border of inner div is supposed to exactly cover the outer div bottom border, because inner div's height is 200px, out div's height is 400px, and then set inner div to margin-top: 50%, both divs' bottom border should be together. but it is not.
I also found out that margin-top:50% depends on outer div's width. if the width is longer, then margin-top: 50% will make inner div go down further. It is so weird.
Anyone knows the reasons?