首页  >  文章  >  web前端  >  PHP自学之路-----DIV+CSS(第四天)_html/css_WEB-ITnose

PHP自学之路-----DIV+CSS(第四天)_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 12:27:20894浏览

浮动 在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;}


2、  

 

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn