Maison > Article > interface Web > PHP自学之路-----DIV+CSS(第四天)_html/css_WEB-ITnose
浮动 在DIV+CSS中浮动分为左浮动,右浮动,清除浮动 1、右浮动 所谓的右浮动,指一个块元素向右移动,让出自己的空间向右移动知道碰到包含自己的父元素的最右边的边框。如下图所示:
测试代码如下:
<title> 浮动案例 </title> <link rel="stylesheet" style="text/css" href="float.css"> <div class="div1" id="id1">div1</div> <div class="div1">div2</div> <div class="div1">div3</div>
.div1{ width:150px; height:100px; border:1px solid red; background:pink; margin-top:5px;}/*id 选择器*/#id1{ float:right;}