flex+margin布局方法

简介: flex+margin布局方法

cf890196ad874aaf93c605aa73ae9679.png

方式:【具体代码1】

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100%;
            height: 100vh;
        }
        .box1{
            width: 100%;
            height: 30vh;
            background-color: blue;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .content1{
            width: 50%;
            height: 50%;
            background-color: lightgray;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1">
            <div class="content1"></div>
        </div>
    </div>
</body>
</html>

【具体代码2】:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100%;
            height: 100vh;
        }
        .box1{
            width: 100%;
            height: 30vh;
            background-color: blue;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .content1{
            width: 50%;
            height: 50%;
            background-color: lightgray;
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1">
            <div class="content1"></div>
        </div>
    </div>
</body>
</html>

e1ee878b707840ac803d9730fa9f649a.png

【具体代码】

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100%;
            height: 100vh;
        }
        .box1{
            width: 100%;
            height: 30vh;
            background-color: blue;
            display: flex;
        }
        .content1{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content2{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content3{
            width: 20%;
            height: 30%;
            background-color: pink;
            margin-left: auto;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1">
            <div class="content1"></div>
            <div class="content2"></div>
            <div class="content3"></div>
        </div>
    </div>
</body>
</html>

7895bac337e346d29df78aa8985b0a50.png

【代码具体实现】:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100%;
            height: 100vh;
        }
        .box1{
            width: 100%;
            height: 30vh;
            background-color: blue;
            display: flex;
        }
        .content1{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content2{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content3{
            width: 20%;
            height: 30%;
            background-color: pink;
            margin-left: auto;
        }
        .content4{
            width: 20%;
            height: 30%;
            background-color: purple;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1">
            <div class="content1"></div>
            <div class="content2"></div>
            <div class="content3"></div>
            <div class="content4"></div>
        </div>
    </div>
</body>
</html>

93703c258b9b4270b64a8cc4370d8301.png

【代码实现】:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 100%;
            height: 100vh;
        }
        .box1{
            width: 100%;
            height: 30vh;
            background-color: blue;
            display: flex;
        }
        .content1{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content2{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content3{
            width: 20%;
            height: 30%;
            background-color: pink;
            margin-left: auto;
        }
        .content4{
            width: 20%;
            height: 30%;
            background-color: purple;
        }
        .content5{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content6{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content7{
            width: 20%;
            height: 30%;
            background-color: pink;
        }
        .content8{
            width: 20%;
            height: 30%;
            background-color: purple;
        }
        .content9{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content10{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content11{
            width: 20%;
            height: 30%;
            background-color: pink;
        }
        .content12{
            width: 20%;
            height: 30%;
            background-color: purple;
        }
        .content13{
            width: 20%;
            height: 30%;
            background-color: lightgray;
        }
        .content14{
            width: 20%;
            height: 30%;
            background-color: lightgoldenrodyellow;
        }
        .content15{
            width: 20%;
            height: 30%;
            background-color: pink;
        }
        .content16{
            width: 20%;
            height: 30%;
            background-color: purple;
        }
        #item{
            /* --n:7;
            --$ap: calc((100%-50px*7) / 7/2);
            margin: 18px var(--$ap); */
            margin: 10px calc(100% - 50px*7)/7/2;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1">
            <div class="content1" id="item"></div>
            <div class="content2" id="item"></div>
            <div class="content3" id="item"></div>
            <div class="content4" id="item"></div>
            <div class="content4" id="item"></div>
            <div class="content5" id="item"></div>
            <div class="content6" id="item"></div>
            <div class="content7" id="item"></div>
            <div class="content8" id="item"></div>
            <div class="content9" id="item"></div>
            <div class="content10" id="item"></div>
            <div class="content11" id="item"></div>
            <div class="content12" id="item"></div>
            <div class="content13" id="item"></div>
            <div class="content14" id="item"></div>
            <div class="content15" id="item"></div>
            <div class="content16" id="item"></div>
        </div>
    </div>
</body>
</html>


相关文章
|
2月前
|
开发者 容器
flex 布局属性在实际项目中的应用场景有哪些?
flex 布局属性在实际项目中的应用场景有哪些?
|
29天前
|
前端开发 UED 容器
使用 Flex 布局实现垂直居中效果
【10月更文挑战第7天】
99 57
|
14天前
|
前端开发 UED 容器
在 CSS 中使用 Flex 布局实现页面自适应时需要注意什么?
【10月更文挑战第22天】在使用 Flex 布局实现页面自适应时,需要对其基本原理和特性有深入的理解,同时结合具体的布局需求和场景,进行细致的调整和优化。通过合理的设置和注意事项的把握,才能实现理想的自适应效果,提升用户体验。还可以根据实际情况进行更深入的探索和实践,以不断提升 Flex 布局的应用能力。
|
3天前
|
开发者 UED 容器
鸿蒙next版开发:ArkTS组件通用属性(Flex布局)
在HarmonyOS next中,ArkTS的Flex布局是一种强大且灵活的布局方式,支持水平或垂直方向排列元素,并能动态调整大小和位置以适应不同屏幕。主要属性包括justifyContent、alignItems、direction和wrap,适用于导航栏、侧边栏和表单等多种场景。示例代码展示了如何使用这些属性创建美观的布局。
21 10
|
1天前
|
容器
HTML中使用Flex布局实现双行夹批效果
在HTML中,还可以用table元素来实现双行夹批效果,但比flex布局代码更复杂,效果也不见得更理想。
|
14天前
|
容器
在 Flex 布局中,如何设置元素在侧轴上的初始对齐方式?
【10月更文挑战第22天】同时,还可以进一步探索其他 Flex 布局相关的属性和技巧,以更好地掌握 Flex 布局的强大功能,创造出更具创意和适应性的页面布局。
22 2
|
29天前
|
前端开发 容器
flex布局
【10月更文挑战第7天】
27 1
flex布局属性简介
flex布局属性简介
|
1月前
多个p标签,并让div“flex”布局,且单行溢出隐藏
多个p标签,并让div“flex”布局,且单行溢出隐藏
27 0