1. 程式人生 > >關於flex兩端對齊 類似左右浮動

關於flex兩端對齊 類似左右浮動

		<div class="hot-header">
			<h3 class="title common-title left">熱門樓盤</h3>
			<div class="right">全部<span class="icon">&gt;</span></div>
		</div>
    .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;