大家好,本篇文章分享企业网站图文列表的布局样式,欢迎参考和指正。
话不多少,看效果图:
HTML代码:
CSS代码分析:
使用flex水平垂直居中
.tui-004 { display: flex; align-items: center; justify-content: center; height: 100vh; }
使用flex布局,固定高度
.tui-004 .tui-w { display: flex; flex-wrap: wrap; justify-content: space-between; width: 1200px; }
文章首条图文列表布局,relative父元素相对定位,内左边距,最低高度
.tui-004 .tui-c { position: relative; padding: 0 0 0 200px; min-height: 117px; }
图文列表布局配置标题字体大小,颜色,粗细,内上边距
.tui-004 .tui-c h3 { font-size: 18px; color: #333; font-weight: 400; padding: 5px 0 0 0; }
图文列表布局配置简介字体大小,颜色,行高
.tui-004 .tui-c p { font-size: 13px; color: #666; line-height: 24px; }
图文列表布局配置图片absolute子元素绝对定位,上左归零,高度和宽度
.tui-004 .tui-c img { position: absolute; left: 0; top: 0; width: 180px; height: 117px; }
标题列表布局,relative父元素相对定位,固定高度和行高,内下边距,外下边距和下边框
.tui-004 .tui-b li { position: relative; height: 33px; line-height: 33px; margin-bottom: 13px; padding-bottom: 13px; border-bottom: 1px dashed #eee; }
标题列表布局配置字体大小和颜色
.tui-004 .tui-b li a { font-size: 14px; color: #333; }
注:以上部分CSS代码只是帮助大家分析结构,是需要清除所有标签的默认样式。
有问题可以留言,大家一起学习HTML+CSS网页设计。