首頁 >web前端 >html教學 >html中多个div层并排显示_html/css_WEB-ITnose

html中多个div层并排显示_html/css_WEB-ITnose

WBOY
WBOY原創
2016-06-24 12:15:261705瀏覽

页面的中间div层中有三个层。1,2,3
想让这三个层并排显示,在火狐中可以显示但在ie中中间和后面的层都掉下来了。
请教高手如何解决。。。。


回复讨论(解决方案)

代码贴出来~~


1

2

3


想让外面div里面的三个div并排显示,随着浏览器大小的改变,层会掉下来。请教师什么原因

没人帮我啊

<style type="text/css"><!doctype html><style type="text/css">#pages {width:900px;background-color:black;margin:auto;}#d1 {width:200px;height:100px;float:left;background-color:red;}#d2 {width:200px;height:100px;float:left;background-color:yellow;}#d3 {width:200px;height:100px;float:left;background-color:green;}</style><div id="pages"><div id="d1"></div><div id="d2"></div><div id="d3"></div></div>


//注意:并排显示div的所有宽度之和不能大于父div的宽度

上面的代码:第一行多写了,去掉:

<!doctype html><style type="text/css">#pages {width:900px;background-color:black;margin:auto;}#d1 {width:200px;height:100px;float:left;background-color:red;}#d2 {width:200px;height:100px;float:left;background-color:yellow;}#d3 {width:200px;height:100px;float:left;background-color:green;}</style><div id="pages"><div id="d1"></div><div id="d2"></div><div id="d3"></div></div>


用样式表来控制

也可以改成width用百分比控制,会根据页面的大小,自动控制div的宽度~~

谢谢各位,之前容易掉下来是因为不在一个层中。谢谢你们。。。

DIV是自适应宽度的,不加浮动代码和宽度是不可以的

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn