私は次々と4つdiv
の要素を持っています。1番、2番、4番は問題なく動いていますが、3番div
はポジショニングが悪いです。私はその位置を設定していますが、それは次のとおりではありません...私のコード..
.mid_table
div
左揃えですが、CSSで指定された座標に従いたいです。
CSS
#top_table {
background-image: url(images/Round%20corner);
background-repeat: no-repeat;
background-position: center top;
height: 25px;
}
#bottom_table {
background-image: url(images/Round%20corner);
background-repeat: no-repeat;
background-position: center bottom;
height: 25px;
}
#mid_table {
background-color: #09F;
left: 54px;
width: 449px;
height: 200px;
position: relative;
}
HTML
<body>
<div id="logo" >
<center>
<h1><b> Portal</b></h1>
</center>
</div>
<div id="top_table">
<!-- empty -->
</div>
<div id="mid_table">
Content for id "mid_table" Goes Here
</div>
<div id="bottom_table">
Content for id "bottom_table" Goes Here
</div>
<div>
</body>