大屏-flex布局

<div class="container">
			<div class="title">标题</div>
				<div class="content">
					<div class="item">
					</div>
					<div class="item" style="width: calc((100% - 30) / 3 * 2)">
					</div>
					<div class="item">
					</div>
					<div class="item">
					</div>
					<div class="item">
					</div>
					<div class="item">
					</div>
					<div class="item">
					</div>
					<div class="item">
					</div>
				</div>
			</div>
		</div>

html,body{
			margin: 0;
			padding: 0;
			width: 100%;
			height: 100%;
		}
		.container{
			width: 100%;
			height: 100%;
		}
		.title{
			text-align: center;
			width:100%;
			height: 50px;
			line-height: 50px;
			background-color: #ccc;
			color: #fff;
		}
		.content{
			width: 100%;
			height: calc(100% - 50px);
			background-color: #fff;
			padding: 5px;
			box-sizing: border-box;
			display: flex;
			flex-wrap: wrap;
			align-content: flex-start;
		}
		.item{
			flex: 1;
			width: calc((100% - 30px) / 3);
			min-width: calc((100% - 30px) / 3);
			max-width: calc((100% - 30px) / 3);
			background-color: #ccc;
			margin: 5px;
			height: 300px;
		}
相关推荐
前端Hardy26 分钟前
HTML&CSS:超炫丝滑的卡片水波纹效果
前端·javascript·css·3d·html
技术思考者29 分钟前
HTML速查
前端·css·html
缺少动力的火车30 分钟前
Java前端基础—HTML
java·前端·html
xcLeigh3 小时前
HTML5实现好看的圣诞节网站源码
前端·html·html5·圣诞节
鑫~阳10 小时前
html + css 淘宝网实战
前端·css·html
Catherinemin10 小时前
CSS|14 z-index
前端·css
NoneCoder11 小时前
CSS系列(36)-- Containment详解
前端·css
锦亦之223312 小时前
cesium入门学习二
学习·html
学前端的小朱14 小时前
处理字体图标、js、html及其他资源
开发语言·javascript·webpack·html·打包工具
兩尛16 小时前
HTML-CSS(day01)
前端·html