您好,登錄后才能下訂單哦!
這篇“css3多蘭自適應(yīng)布局的方法”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“css3多蘭自適應(yīng)布局的方法”文章吧。
自適應(yīng)多蘭布局(中間含有margin邊界),這種除了百分比,還有沒(méi)有別的方法處理:
思索一陣,發(fā)現(xiàn)box-flex布局,比較不方便。還是用:column-count屬性(指定的列之間的差距)更快捷貼近場(chǎng)景。
完整demo:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>demo</title>
<style>
*{margin:0;padding:0;}
/*多欄自適應(yīng)布局*/
.newspaper{
-moz-column-count:4; /* Firefox */
-webkit-column-count:4; /* Safari and Chrome */
column-count:4;
-moz-column-gap:40px; /* Firefox */
-webkit-column-gap:40px; /* Safari and Chrome */
column-gap:40px;
}
/*內(nèi)容垂直左右居中*/
.newspaper .each{
background:red;height:200px;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
-webkit-justify-content: center;
justify-content: center;
}
</style>
</head>
<body>
<div class=" ">
<div class=" ">內(nèi)容1</div>
<div class=" ">內(nèi)容2</div>
<div class=" ">內(nèi)容3</div>
<div class=" ">內(nèi)容4</div>
</div>
</body>
</html>
以上就是關(guān)于“css3多蘭自適應(yīng)布局的方法”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。