grid網格布局 #設置單元格之間的間距


設置行間距:

css:
grid-row-gap:像素;

css代碼:

<style>
.box{
width: 300px;
height: 300px;
border:1px solid #000;
margin: 50px auto;
display: grid;
grid-template-rows: repeat(3, 20%);
grid-template-columns: repeat(3, 20%);
grid-row-gap: 20px;
}
</style>

效果:

 

設置列間距:

grid-column-gap:像素;

css代碼:

<style>
.box{
width: 300px;
height: 300px;
border:1px solid #000;
margin: 50px auto;
display: grid;
grid-template-rows: repeat(3, 20%);
grid-template-columns: repeat(3, 20%);
grid-column-gap: 20px;
}

效果:

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM