flex与评论

122 阅读1分钟

实现过程:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
    .Media{
        display: flex;
        align-items: flex-start;
    }
    .Media-figure{
        margin-right: 1em;
    }
    .Media-body{
        flex: 1;
    }
    </style>
</head>
<body>
    <div class="Media">
        <img class="Media-figure" src="https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-assets/v3/static/img/logo.a7995ad.svg~tplv-t2oaga2asx-image.image" alt="我是Logo图像">
        <p class="Media-body">pppppppppppppppppppp</p>
    </div>
</body>
</html>

参考文章:

阮一峰老师文章