我担心地使用了这个位置:绝对;在我的模板容器中,以便我放置中心和两侧。
但是,正如我担心的那样,如果您碰巧希望您的网站被您以外的其他人访问,那么请不要使用它。这是因为绝对位置对您来说意味着一件事,而对于拥有不同尺寸的不同显示器屏幕的其他人来说意味着另一件事,对吧?
我去另一台电脑查看我的网页,但盒子向右移动了?
我说的对吗?
谢谢你
这是我的容器
#container-center{
width:630px; /*** Set to = center col width ***/
height:500px;
float:center;
font-size:8px;
display:inline;
position:absolute;
left:450px;
top:80px;
/* \*/
margin-left:-1px;
/* Hidden from IE-mac */
}
#left_container_home{
width:150px; /*** Set to = center col width ***/
height:500px;
font-size:8px;
display:inline;
position:absolute;
left:250px;
top:80px;
/* \*/
margin-left:-1px;
/* Hidden from IE-mac */
}
#right_container{
width:200px; /*** Set to = center col width ***/
height:500px;
float:right;
font-size:8px;
display:inline;
position:absolute;
left:1085px;
background:#F3F3F4;
top:80px;
/* \*/
margin-left:-1px;
/* Hidden from IE-mac */
}
这种技术正确吗?我的意思是我做了什么。我这么说是因为,我不明白说“左 450 像素”对我来说是正确的,而对于屏幕较小的其他人来说是正确的。
我已经像这样修改了标题,它已经向左漂移了!如果我只是告诉它margin 0 auto,为什么会这样呢?
#header {
background: url("../jq185/css/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png") repeat-x scroll 50% 50% #2191C0;
font-family: 'trebuchet ms',geneva,arial,tahoma,sans-serif;
font-size: 10px;
width: 930px; margin: 0 auto;
h2 {color:#ffffff;}
}