最新回答 / Happy_learning
绝对定位使元素脱离文档流,因此不占据空间。普通文档流中元素的布局就当绝对定位的元素不存在时一样。因为绝对定位的框与文档流无关,所以它们可以覆盖页面上的其他元素。 而浮动元素的定位还是基于正常的文档流,然后从文档流中抽出并尽可能远的移动至左侧或者右侧。文字内容会围绕在浮动元素周围。当一个元素从正常文档流中抽出后,仍然在文档流中的其他元素将忽略该元素并填补他原先的空间。它只是改变了文档流的显示,而没有脱离文档流,理解了这一点,就很容易弄明白什么时候用定位,什么时候用浮动了。 一个元素浮动或绝对定位后,它将自动...
2016-03-13
最赞回答 / 背着行囊独自流浪
元素与其它元素之间的距离可以使用边界(margin)来设置。边界也是可分为上、右、下、左。如下代码:div{margin:20px 10px 15px 30px;}也可以分开写:div{ margin-top:20px; margin-right:10px; margin-bottom:15px; margin-left:30px;}
2016-03-12
div{ text-align:center; line-height:50px}
.main{ width:960px; height:600px; margin:0px 10px 10px 0px}
.left{ width:280px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{;width:650px; height:600px; background:#FCC; float:left;margin-left:20px;}/*右浮动样式*/
</style>
</head>
.main{ width:960px; height:600px; margin:0px 10px 10px 0px}
.left{ width:280px; height:600px; background:#ccc; float:left;}/*左浮动样式*/
.right{;width:650px; height:600px; background:#FCC; float:left;margin-left:20px;}/*右浮动样式*/
</style>
</head>
.top{height:100px; background:#ccc;}
.main{height:500px; background:#FF0000;position:relative;}
.left{ width:200px; height:500px; background:#0033CC;position:absolute;top:0;}
.right{height:500px; background:#99FFFF; margin-left:210px;}
.foot{height:50px; background:#FF6633;}
.main{height:500px; background:#FF0000;position:relative;}
.left{ width:200px; height:500px; background:#0033CC;position:absolute;top:0;}
.right{height:500px; background:#99FFFF; margin-left:210px;}
.foot{height:50px; background:#FF6633;}
.top{height:50px;background:black;}
.main{height:400px;background:red;}
.left{ width:200px;height:400px;background:blue;position:absolute;left:0;top:50px;}
.right{height:400px;background:green;margin:0 0 0 210px;}
.foot{height:30px;background:yellow;clear:both;}
.main{height:400px;background:red;}
.left{ width:200px;height:400px;background:blue;position:absolute;left:0;top:50px;}
.right{height:400px;background:green;margin:0 0 0 210px;}
.foot{height:30px;background:yellow;clear:both;}
最新回答 / 流海侃人
自适应应该用position:absolute来实现。 写上position:absolute之后在写上left:210px right:10px。这样就规定了right块离<body>左右两侧的距离,无论浏览器窗口怎么动right块都是的左右两侧距离都是一定的。
2016-03-11