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

ie兼容display:box

时间:2014-09-25 18:36:57      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   c   log   代码   html   

在我们遇到左边图片,右边一段文字,这样的,一段宽度固定,一段宽度不定的情况,我们会用display:box来解决,但是,ie却不会兼容,这样就有以下一种方法

html代码

<div>
<img class="img" src="xxxxx"/>
<div class="title">xxxxxxxxxxxxx</div>
</div>

 

css代码

.img {float:left}
.title {padding-left: 45px;display: block;}

padding-left为左边图片固定的宽度,这个地方如果写的是span这类行标签,就一定要加上display: block;  很多人会将右边也设置float:left;其实是不需要的

ie兼容display:box

标签:style   blog   color   sp   div   c   log   代码   html   

原文地址:http://www.cnblogs.com/snowbaby-kang/p/3992990.html

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