题解 | #双列布局 - 绝对定位#

双列布局 - 绝对定位

https://www.nowcoder.com/practice/045c072ae8d14eee84bf8c28069729bb

<!DOCTYPE html>
<html>
    <head>
        <meta charset=utf-8>
        <style type="text/css">
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            .container {
                position: relative;
            }
            .left {
                border: 1px solid black;
                position: absolute;
                left: 0;
                width: 100px;
            }
            .right {
                border: 1px solid black;
                position: absolute;
                left: 100px;
                right: 0px;
            }
        </style>
    </head>
    <body>
    	<section class="container">
            <article class="left">我是left<br /><br /><br /><br /></article>
            <article class="right">我是right<br /><br /><br /><br /></article>
        </section>
    </body>
</html>

全部评论

相关推荐

字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务