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

溫馨提示×

溫馨提示×

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

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

css如何實現柵格布局

發布時間:2022-03-01 10:23:39 來源:億速云 閱讀:202 作者:小新 欄目:web開發

這篇文章主要介紹css如何實現柵格布局,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一、使用float:

代碼如下:


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
section
{
border: solid 1px;
}
section section
{
float: left;
margin-left: 10px;
margin-top: 10px;
text-align: center;
width: 200px;
border-radius: 20px;
height: 200px;
}
.parent
{
height: 440px;
width: 660px;
}
.parent section:first-child
{
height: 410px;
}
</style>
</head>
<body>
<section class="parent">
<section>A</section>
<section>B</section>
<section>C</section>
<section>D</section>
<section>E</section>
</section>
</body>
</html>

二、使用display:flex(這個css3屬性僅谷歌和火狐支持)

代碼如下:


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style>
section
{
border: solid 1px;
}
section section
{
margin-left: 10px;
margin-top: 10px;
text-align: center;
width: 200px;
border-radius: 20px;
height: 200px;
}
.parent
{
display: flex;
flex-direction: column;
flex-wrap: wrap;
height: 440px;
width: 660px;
}
.parent section:first-child
{
height: 410px;
}
</style>
</head>
<body>
<section class="parent">
<section>A</section>
<section>B</section>
<section>C</section>
<section>D</section>
<section>E</section>
</section>
</body>
</html>

以上是“css如何實現柵格布局”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

css
AI

开原市| 彰武县| 绥阳县| 和平区| 高雄市| 高唐县| 耿马| 文登市| 称多县| 宜春市| 赤水市| 江山市| 屯昌县| 甘谷县| 桓仁| 晋宁县| 塔河县| 广德县| 仙游县| 南丰县| 南京市| 宁强县| 霍州市| 通渭县| 易门县| 衢州市| 呼伦贝尔市| 吉木乃县| 冕宁县| 梓潼县| 双城市| 南投市| 平湖市| 忻州市| 华容县| 嵊州市| 保山市| 大城县| 恩平市| 阿勒泰市| 顺义区|