中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

岑溪市| 汝州市| 响水县| 岳池县| 施甸县| 南乐县| 龙江县| 曲麻莱县| 城口县| 延吉市| 尤溪县| 永登县| 南乐县| 南木林县| 如皋市| 永兴县| 河北区| 博兴县| 凭祥市| 密云县| 九台市| 连云港市| 临武县| 蓬安县| 崇州市| 雅江县| 正阳县| 南阳市| 乌兰浩特市| 北安市| 东乌珠穆沁旗| 邵阳县| 华宁县| 宜兴市| 伊宁市| 桂平市| 饶阳县| 玛多县| 朝阳市| 疏附县| 鲁山县|