
要实现上图效果,有些可能会把布局写得比较复杂,然后下面来认识一个比较简单的布局方法
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <div class="wrap"> <div class="item"> <img src="pro.jpg" alt="" class="fr clear_right"> <p>float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!</p> </div> <div class="item"> <img src="pro.jpg" alt="" class="fr clear_right"> <p>float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!</p> </div> <div class="item"> <p>float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!float是魔鬼,会影响其他相邻元素;但是clear是小白,其只会影响自身,不会对其他相邻元素造成影响!</p> </div> </div>
|
如果要使用上面的布局来实现最终的效果,需要认识css的一个样式clear的语法
1 2 3 4 5 6 7
| clear语法: clear : none | left | right | both 取值: none : 默认值。允许两边都可以有浮动对 left : 不允许左边有浮动对象 right : 不允许右边有浮动对象 both : 不允许有浮动对象
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| html,div,p,img{ margin: 0; padding: 0; } html{ font-size: 14px; } .wrap{ width: 500px; margin: 20px auto;
} .item{ padding: 10px; border: 1px solid red; margin-top: -1px; overflow: auto; } .item img{ max-height: 150px; margin-left: 10px; } .item p{ font-size: 1rem; text-indent: 2em; line-height: 1.5; text-align: justify; } .fr{ float: right; } .clear_right{ clear: right; }
|
1 2 3
| overflow: auto;的作用是清除父元素的浮动,这样可以不需要给父元素增加height(css宗旨:能不给元素增加height就不增加) margin-top: -1px;的作用是隐去除第一个之外的item的border-top的这一条线,这样做可以省略伪类的增加,精简代码 text-align: justify;的作用是使文字呈两端对齐,美观布局
|