2

#yyds干货盘点# 【js学习笔记四十九】实现两栏布局的第五种方式

 1 year ago
source link: https://blog.51cto.com/u_14476028/5358696
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

#yyds干货盘点# 【js学习笔记四十九】实现两栏布局的第五种方式

原创

前端歌谣 2022-06-05 18:19:23 ©著作权

文章标签 html 相对定位 绝对定位 文章分类 JavaScript 前端开发 阅读数191

我是歌谣 我有个兄弟 巅峰的时候排名c站总榜19 叫前端小歌谣 曾经我花了三年的时间创作了他 现在我要用五年的时间超越他 今天又是接近兄弟的一天人生难免坎坷 大不了从头再来 歌谣的意志是永恒的 放弃很容易 但是坚持一定很酷

实现两栏布局第五种方式

#yyds干货盘点# 【js学习笔记四十九】实现两栏布局的第五种方式_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>两栏布局第五种</title>

</head>
<style>
.outer {
position: relative;
height: 100px;
}
.left {
position: absolute;
width: 200px;
height: 100%;
background: lightcoral;
}
.right {
margin-left: 200px;
height: 100%;
background: lightseagreen;
}

</style>
<body>
<!-- 利用绝对定位,父级元素设为相对定位。左边元素 absolute 定位,宽度固定。右边元素的 margin-left 的值设为左边元素的宽度值。 -->

<div class="outer">
<div class="left">左侧</div>
<div class="right">右侧</div>
</div>
</body>
</html>
#yyds干货盘点# 【js学习笔记四十九】实现两栏布局的第五种方式_相对定位_03
​编辑
  • 收藏
  • 评论
  • 分享
  • 举报

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK