css 简单网页布局——浮动(一)

1. 三种布局方式
1.1 标准流
1.2 浮动的使用

1.3 简述浮动

1.3.1 浮动三大特性
html 复制代码
 <style>
        .out {
            border: 1px red solid;
            width: 1000px;
            height: 500px;
        }

        .one {
            background-color: aquamarine;
            width: 200px;
            height: 100px;
        }

        .two {
            background-color: blueviolet;
            width: 200px;
            height: 100px;
        }

        .add {
            width: 300px;
            height: 200px;
            background-color: blue;
        }
    </style>
</head>
<body>
    <div class="out">
        <div class="one">1111</div>
        <div class="two">2222</div>
        <div class="add">AAAAA</div>
    </div>
</body>

1.3.2 浮动的常规使用

1.4 浮动案例

案例 1 :

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        .out {
            border: 1px red solid;
            width: 1000px;
            height: 500px;
            margin: 10px auto;
            background-color: bisque;
        }

        .left {
            background-color: aquamarine;
            width: 300px;
            height: 500px;
            float: left;
        }

        .right {
            background-color: blueviolet;
            width: 700px;
            height: 500px;
            float: right;
        }
    </style>
</head>
<body>
    <div class="out">
        <div class="left"></div>
        <div class="right"></div>
    </div>
</body>
</html>

案例 2 :

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .out {
            width: 880px;
            height: 170px;
            margin: 10px auto;
            background-color: aquamarine;
        }

        .one,.two,.three,.four {
            height: 150px;
            width: 200px;
            margin: 10px ;
        }

        .one {
            background-color: burlywood;
            float: left;
        }

        .two {
            background-color: cadetblue;
            float: left;
        }

        .three {
            background-color: chocolate;
            float: left;
        }

        .four {
            background-color: darkorange;
            float: left;
        }
    </style>
</head>
<body>
    <div class="out">
        <div class="one">甲</div>
        <div class="two">乙</div>
        <div class="three">丙</div>
        <div class="four">丁</div>
    </div>
</body>
</html>

第二种方式:

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        /* 在实际生活中,布局的宽高等都是有精确要求的 */
        * {
            margin: 0;
            padding: 0;
        }

        div {
            border: 1px red solid;
            width: 850px;
            height: 300px;
            margin: 10px auto;
        }

        .test {
            list-style: none;
        }

        /* 必须对 li 设置宽高,背景颜色等 */
        .test li {
            float: left;
            width: 150px;
            height: 200px;
            background-color: bisque;
            margin: 10px;
        }
    </style>
</head>
<body>
    <div>
        <ul class="test">
            <li>111</li>
            <li>222</li>
            <li>333</li>
            <li>444</li>
            <li>555</li>
        </ul>
    </div>
</body>
</html>

案例 3 :

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .out {
            width: 1200px;
            height: 600px;
            margin: 10px auto;
            background-color: aquamarine;
        }

        .left {
            width: 350px;
            height: 600px;
            background-color: bisque;
            float: left;
        }

        .right {
            width: 850px;
            height: 00px;
            background-color: blueviolet;
            float: right;
        }

        .right ul {
            list-style: none;
        }

        .right ul li {
            float: left;
            width: 190px;
            height: 280px;
            background-color: brown;
            margin: 10px;
        }
    </style>
</head>
<body>
    <div class="out">
        <div class="left"></div>
        <div class="right">
            <ul>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
        </div>
    </div>
</body>
</html>

案例 4 :

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .top {
            height: 100px;
            background-color: aquamarine;
        }

        .banner {
            margin: 10px auto;
            height: 100px;
            width: 1000px;
            background-color: bisque;
        }

        .up {
            width: 1000px;
            margin: 10px auto;
            background-color: burlywood;
        }

        .up ul {
            list-style: none;
        }

        .up ul li {
            width: 230px;
            height: 100px;
            float: left;
            margin: 10px 10px;
            background-color: blueviolet;
        }

        .down {
            width: 1000px;
            margin: 10px auto;
            background-color: burlywood;
        }

        .down ul {
            list-style: none;
        }

        .down ul li {
            width: 230px;
            height: 300px;
            float: left;
            margin: 10px 10px;
            background-color:burlywood;
        }

        .footer {
            height: 300px;
            background-color:cornflowerblue;
            margin-top: 460px;
        }
    </style>
</head>
<body>
    <div class="top"></div>
    <div class="banner"></div>
    <div class="up">
        <ul>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
    <div class="down">
        <ul>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
    <div class="footer"></div>
</body>
</html>
1.5 案例总结
html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }


        div {
            width: 200px;
            height: 200px;
            margin-top: 10px;
            margin-left: 10px;
        }

        .one {
            background-color: aquamarine;
        }

        .two {
            background-color: bisque;
        }

        .three {
            background-color: blueviolet;
        }
    </style>
</head>
<body>
    <div class="one">111</div>
    <div class="two">222</div>
    <div class="three">333</div>
</body>
</html>

相关推荐
也无晴也无风雨1 小时前
深入剖析输入URL按下回车,浏览器做了什么
前端·后端·计算机网络
Martin -Tang2 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational3 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐3 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架
曹天骄5 小时前
next中服务端组件共享接口数据
前端·javascript·react.js
阮少年、5 小时前
java后台生成模拟聊天截图并返回给前端
java·开发语言·前端
郝晨妤6 小时前
鸿蒙ArkTS和TS有什么区别?
前端·javascript·typescript·鸿蒙
AvatarGiser7 小时前
《ElementPlus 与 ElementUI 差异集合》Icon 图标 More 差异说明
前端·vue.js·elementui
喝旺仔la7 小时前
vue的样式知识点
前端·javascript·vue.js
别忘了微笑_cuicui7 小时前
elementUI中2个日期组件实现开始时间、结束时间(禁用日期面板、控制开始时间不能超过结束时间的时分秒)实现方案
前端·javascript·elementui