浮动float

文档流:html元素按书写顺序进行排列,从左到右,从上到下,也叫标准流
css两大功能:
1).控制元素的样式;2. 控制元素的位置(布局)
2.布局前提:浏览器交出页面布局的权限,交给用户,将元素从文档流中脱离出来
3.脱离文档流的手段:浮动,绝对定
4.浮动可以将元素在水平方向上自由移动,垂直仍在文档中

 <h1>欢迎新同学</h1>
    <div class="box1">box1</div>
    <div class="box2">box2</div>
    <div class="box3">box3</div>

    <div class="box4"></div>

css`

.box1 {
    width: 150px;
    height: 150px;
    background-color: lightblue;
}

.box2 {
    width: 150px;
    height: 150px;
    background-color: lightgreen;
}

.box1 {
    float: left;
}

.box2 {
    float: right;
}

.box3 {
    width: 200px;
    height: 200px;
    float: right;
    background-color: red;
}

.box4 {
    height: 100px;
    background-color: gray;
}

.box4 {
    clear: left;
}

效果
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值