EasyUI Forum

General Category => EasyUI for Angular => Topic started by: fengdie on April 29, 2018, 11:52:46 PM



Title: suggest add new new layout components
Post by: fengdie on April 29, 2018, 11:52:46 PM
like this
Code:
<eui-row>
  <eui-col span="24">24</eui-col>
</eui-row>


Title: Re: suggest add new new layout components
Post by: jarry on April 30, 2018, 07:46:41 PM
It's easy to build this layout using 'flex' css.
Code:
<div class="f-row" style="height:50px;margin-bottom:20px">
<div class="f-full" style="background:#80bdff"></div>
<div class="f-full" style="background:#17a2b8"></div>
</div>
<div class="f-row" style="height:50px;margin-bottom:20px">
<div class="f-full" style="background:#80bdff"></div>
<div class="f-full" style="background:#17a2b8"></div>
<div class="f-full" style="background:#80bdff"></div>
</div>
<div class="f-row" style="height:50px;margin-bottom:20px">
<div class="f-full" style="background:#80bdff"></div>
<div class="f-full" style="background:#17a2b8"></div>
<div class="f-full" style="background:#80bdff"></div>
<div class="f-full" style="background:#17a2b8"></div>
</div>


Title: Re: suggest add new new layout components
Post by: fengdie on April 30, 2018, 10:43:00 PM
3q