91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

html中如何實現兩欄布局

發布時間:2021-12-03 11:09:57 來源:億速云 閱讀:531 作者:小新 欄目:web開發

這篇文章給大家分享的是有關html中如何實現兩欄布局的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

html中實現兩欄布局的方法:1、利用float屬性和margin屬性來實現;2、利用BFC技術來實現;3、利用table布局技術來實現;4、利用flex彈性布局技術來實現;5、利用grid網格布局技術來實現。

本教程操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。

html網頁中實現兩欄布局

1、利用float+margin實現

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.left1 {
height: 300px;
background-color: red;
width: 400px;
float: left;
}

.right1 {
width: 400px;
height: 300px;
background-color: green;
margin-left: 400px;
}
</style>
</head>
<body>
<div></div>
<div></div>
</body>
</html>

2、利用BFC實現

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.left2 {
height: 300px;
background-color: red;
width: 400px;
float: left;
}

.right2 {
height: 300px;
background-color: blue;
overflow: hidden;
}
</style>
</head>
<body>
<div></div>
<div></div>
</body>
</html>

3、利用table布局

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.parent {
display: table;
width: 100%;
table-layout: fixed;
}

.left3 {
display: table-cell;
height: 300px;
width: 300px;
background-color: pink;
}

.right3 {
display: table-cell;
height: 300px;
background-color: purple;
}
</style>
</head>
<body>
<div>
<div></div>
<div></div>
</div>
</body>
</html>

4、利用flex布局

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.parentf {
display: flex;
flex-direction: row;
justify-content: flex-start;
width: 100%;
}

.left4 {
height: 300px;
width: 300px;
background-color: skyblue;
}

.right4 {
height: 300px;
width: 100%;
background-color: yellowgreen;
}
</style>
</head>
<body>
<div>
<div></div>
<div></div>
</div>
</body>
</html>

5、利用grid布局

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.parent {
height: 400px;
display: grid;
grid-template-columns: 50% 50%;
width: 100%;
}

.left5 {
background-color: skyblue;
}

.right5 {
background-color: pink;
}
</style>
</head>
<body>
<div>
<div></div>
<div></div>
</div>
</body>
</html>

感謝各位的閱讀!關于“html中如何實現兩欄布局”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

喜德县| 浦城县| 黄骅市| 南陵县| 临城县| 苍梧县| 寿阳县| 枣庄市| 合阳县| 黄骅市| 闵行区| 广昌县| 大渡口区| 昂仁县| 无极县| 北安市| 无棣县| 开封县| 莱阳市| 江阴市| 辽阳县| 日喀则市| 新化县| 双鸭山市| 巴青县| 荥阳市| 江口县| 盘锦市| 南部县| 金秀| 禹州市| 洛扎县| 抚顺县| 惠来县| 大连市| 泊头市| 珠海市| 渭源县| 平湖市| 扶风县| 龙泉市|