关于flex两端对齐 类似左右浮动

		

热门楼盘

全部>
    .hot-header{
    	display: flex;
    	flex-flow: row nowrap;
    	justify-content: space-between;
     }
	 .left {
		height: 30px;
	 }
	 .right {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
		color: #9E9E9E;
	 }
	 .icon {
		margin-left: 8px;
	 }

关键样式

display: flex;

flex-flow: row nowrap;

justify-content: space-between;

你可能感兴趣的:(CSS)