码迷,mamicode.com
首页 > 其他好文 > 详细

div的一些易出错地方

时间:2014-10-13 16:38:49      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   color   strong   sp   div   on   问题   代码   ef   

1.div中放一张图片老是显示不出来?

解决方法如下: 

     设置一下div的宽度与高度,然而此时直接写width与height是不对的,对于块级元素没有这个属性,只能在style="width:200px;height:200px"中设置div的宽与高

2.div设置了颜色显示不出来?

看如下代码:

     <div style="width:960px;background-color:red;">
         <div style="width:300px; height:300px; float:left">左侧</div>
         <div style="width:300px; height:300px; float:left">中部</div>
         <div style="width:300px; height:300px; float:left">右侧</div>
     </div>

该问题的解决方法是:在外层的div中设置高度

     <div style="width:960px;background-color:red;height:300px">
         <div style="width:300px; height:300px; float:left">左侧</div>
         <div style="width:300px; height:300px; float:left">中部</div>
         <div style="width:300px; height:300px; float:left">右侧</div>
     </div>

div的一些易出错地方

标签:style   color   strong   sp   div   on   问题   代码   ef   

原文地址:http://www.cnblogs.com/aajava/p/4022188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!