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