flex的一个面试点

flex实现如下布局

html 复制代码
<!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>
        .flex-box {
            width: 200px;
            height: 200px;
            background-color: green;
            display: flex;
            justify-content: space-between; /*定义项目在主轴上的对齐方式 */

        }
        .flex-item-box {
            width: 50px;
            height: 50px;
            background-color: red;
        }
        .flex-item-box:nth-child(2) {
            align-self: flex-end;
        }
    </style>
</head>
<body>
    <div class="flex-box">
        <div class="flex-item-box"></div>
        <div class="flex-item-box"></div>
    </div>
</body>
</html>

容易被忽视的 align-self

www.ruanyifeng.com/blog/2015/0...

相关推荐
榴莲千丞1 小时前
第8章利用CSS制作导航菜单
前端·css
guokanglun1 小时前
CSS样式实现3D效果
前端·css·3d
NiNg_1_2345 小时前
前端CSS3 渐变详解
前端·css·html
Au_ust6 小时前
css:权重计算
前端·css
前端Hardy7 小时前
HTML&CSS 打造的酷炫菜单选项卡
前端·javascript·css·html·css3
YUJIANYUE8 小时前
原生html+js输入框下拉多选带关闭模块完整案例
javascript·css·html
码手Lion8 小时前
CSS多列布局:打破传统布局的束缚
前端·css
Wx-bishekaifayuan8 小时前
springboot市社保局社保信息管理与分析系统-计算机设计毕业源码03479
java·css·spring boot·spring·spring cloud·servlet·guava
起风的秋天@8 小时前
CSS Modules在框架中的使用
前端·css
王解13 小时前
【深度解析】CSS工程化全攻略(1)
前端·css