网页前端后台技巧(CSS+HTML)【HTML+CSS】

css-浮动用法

2018-11-04  本文已影响0人  杰伊_约翰

浮动

比如在css中我们做导航条的时候或是排列一些图片的时候就需要用到浮动来解决排列依次换行的问题。
关键词:float;它有两个值依次是left和right,也就是左右浮动。之前的几天我写过一个布局里面排列div盒子的时候就用到了float,下面是简单的一个效果;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>浮动</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        .box1{
            width: 1200px;
            height: 100px;
            background-color: orange;
            margin: 0 auto;
        }
        .box2{
            width: 1200px;
            height: 600px;
            background-color: gold;
            margin: 0 auto;
        }
        .box3{
            width: 200px;
            height: 500px;
            background-color: green;
            margin: 10px auto 0;
            float: left;

        }
        .box4{
            width: 800px;
            height: 500px;
            background-color: yellow;
            margin: 10px auto 0;
            float: left;
            
        }
        .box5{
            width: 200px;
            height: 500px;
            background-color: pink;
            margin: 10px auto 0;
            float: left;
            
        }       
    </style>
</head>
<body>
    <div class="box1"></div>
    <div class="box2">
        <div class="box3"></div>
        <div class="box4"></div>
        <div class="box5"></div>
    </div>
</body>
</html>
浮动

如果没有设置浮动div盒子是依次换行排列。


image.png
上一篇 下一篇

猜你喜欢

热点阅读