div九宫格图片布局
程序员文章站
2022-04-19 20:58:01
...
以前我都会用display:flex弹性布局的方式来写,今天学会了一种新写法,不浮动,也不弹性的方式,用div的方式实现。
给div设置固定宽度,并带上右外边距。然后用style对index第4个(一排放4个的话index % 4 === 3 )的margin-right:0px
<div style="width: 100%;min-height: 800px;margin-top: 60px">
<div v-for="(city, index) in cities"
:key="index"
:style="index % 4 === 3 ? 'margin-right:0px' : ''"
class="shopping-box"></div>
</div>
.shopping-box {
margin-right: 20px;
width: 285px;
}
上一篇: Android Studio之高德地图实现定位和3D地图显示
下一篇: docker教程通俗易懂
推荐阅读
-
采用DIV+CSS布局的好_html/css_WEB-ITnose
-
[div+css布局]命名规则_html/css_WEB-ITnose
-
div里面插入一张图片,li里面也插入一张图片,但是li的图片却在div图片外面_html/css_WEB-ITnose
-
div+css布局的版式_html/css_WEB-ITnose
-
div+css布局实例淘宝分析(二)_html/css_WEB-ITnose
-
div+css布局时的浏览器兼容问题_html/css_WEB-ITnose
-
【原】《DIV+CSS商业案例与网页布局开发精讲》读书笔记(2)_html/css_WEB-ITnose
-
dw用div布局 布局后的顶部有空白 怎么都去不掉_html/css_WEB-ITnose
-
div+css网页布局设计新开端(8)
-
DIV+CSS布局问题_html/css_WEB-ITnose