並將 c1 的 width 和 left 都設為 50% (即頁面的一半寬度),再將 c2 左推 50% 的寬,
若是使用絕對位置 absolute ,記得將 width 設為 100%,此時就達成置中了的效果了。
.c1
{
position:absolute;
width:50%;
left:50%;
border:2px solid blue;
}
.c2 /* relative */
{
position:relative;
left:-50%;
border:2px solid red;
text-align: center;
}
.c2 /* absolute*/
{
position:absolute;
left:-50%;
width:100%;
border:2px solid red;
text-align: center;
}
沒有留言:
張貼留言