You need use flex view,
(您需要使用弹性视图,)
You need to add display: flex
to the parent.
(您需要将display: flex
添加到父级。)
And add flex ratio
to the children. (并增加孩子的flex ratio
。)
Example
(例)
.nav { display: flex; flex-direction: row; } .left, .right { flex: 1; }
<div class='nav'> <div class='left'> <ul> <li>About Us</li> <li>Affiliates</li> </ul> </div> <div class='right'> <ul> <li>TOS</li> </ul> </div> </div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…