我在英国容器中有一个2列网格,而我真正想要实现的是让第二列占据可用的其余水平空间。使用uikit的最佳实践是什么?谢谢。
答案 0 :(得分:0)
您应该查看uk-width-expand
答案 1 :(得分:0)
您可以像下面这样使用 - 非常适合您:
<div class="uk-container" uk-grid>
<div class="uk-width-1-3">Fixed Width</div>
<div class="uk-width-expand">the rest of the horizontal space available</div>
或者如果你想根据内容生成宽度,你可以像下面这样使用:
<div class="uk-container" uk-grid>
<div class="uk-width-1-3">Fixed Width</div>
<div class="uk-width-auto">the rest of the horizontal space available</div>
注意:uk-width-auto 仅根据内容生成宽度。