当前位置:网站首页>Flex Jiugongge layout
Flex Jiugongge layout
2022-07-02 06:51:00 【xuefankang】
design sketch

html
<div class="gridBox">
<div class="cellLi">1</div>
<div class="cellLi">2</div>
<div class="cellLi">3</div>
<div class="cellLi">4</div>
<div class="cellLi">5</div>
<div class="cellLi">6</div>
<div class="cellLi">7</div>
<div class="cellLi">8</div>
<div class="cellLi">9</div>
</div>css
.gridBox{
background-color: #f5f5f5;
overflow: hidden;
margin: 20px 0;
display: flex;
flex-wrap: wrap;
}
.cellLi{
width: calc(100% / 3);
padding: 60px 0;
text-align: center;
border: 1px solid #f5f5f5;
box-sizing: border-box;
background-color: #fff;
overflow: hidden;
}边栏推荐
- js判断数组中对象是否存在某个值
- pytest(3)parametrize参数化
- virtualenv和pipenv安装
- sprintf_s的使用方法
- web自动中利用win32上传附件
- FE - Weex 使用简单封装数据加载插件为全局加载方法
- selenium备忘录:selenium\webdriver\remote\remote_connection.py:374: ResourceWarning: unclosed<xxxx>解决办法
- DeprecationWarning: . ix is deprecated. Please use. loc for label based indexing or. iloc for positi
- PIP install
- Sublime text configuring PHP compilation environment
猜你喜欢

The use of regular expressions in JS

Pytest (1) case collection rules

Win10: add or delete boot items, and add user-defined boot files to boot items

Huawei mindspire open source internship machine test questions

Vscode installation, latex environment, parameter configuration, common problem solving

Recursion (maze problem, Queen 8 problem)

Latex compilation error I found no \bibstyle &\bibdata &\citation command

uniapp引入本地字体

Win10网络图标消失,网络图标变成灰色,打开网络设置闪退等问题解决

qq邮箱接收不到jenkins构建后使用email extension 发送的邮件(timestamp 或 auth.......)
随机推荐
【文献阅读与想法笔记13】 Unprocessing Images for Learned Raw Denoising
Solve the problem of bindchange event jitter of swiper component of wechat applet
Latex compilation error I found no \bibstyle &\bibdata &\citation command
Latex error: the font size command \normalsize is not defined problem solved
Fe - eggjs combined with typeorm cannot connect to the database
js删除字符串的最后一个字符
Latex warning: citation "*****" on page y undefined on input line*
ZZQ的博客目录--更新于20210601
pytest(1) 用例收集规则
浏览器滚动加载更多实现
20210306 reprint how to make TextEdit have background pictures
Functions of tensorrt
Latex参考文献引用失败 报错 LaTeX Warning: Citation “*****” on page y undefined on input line *
Vscode installation, latex environment, parameter configuration, common problem solving
table 组件指定列合并行方法
Latex 编译报错 I found no \bibstyle & \bibdata & \citation command
Detailed definition of tensorrt data format
ts和js区别
Selenium+msedgedriver+edge browser installation driver pit
Implement strstr() II