带行的网格垂直定位

带行的网格垂直定位

我有这样的看法:
css - 带行的网格垂直定位-LMLPHP

而我的代码:

<div class="row">
  <div eds-tile class="xl-4" style="height: 700px">
    <eds-tile-title>User on Shift</eds-tile-title>
    <!-- <eds-gauge [settings]="gaugeScore"></eds-gauge> -->
  </div>
  <div eds-tile class="xl-4" style="height: 200px">
    <eds-tile-title>Count of Ticket Closed</eds-tile-title>
  </div>
  <div eds-tile class="xl-4" style="height: 200px">
    <eds-tile-title>Total Ticket</eds-tile-title>
  </div>
  <div eds-tile class="xl-8" style="height: 400px">
    <eds-tile-title>User on Shift Indicator</eds-tile-title>
  </div>
</div>


如果我想将“已关闭票数”框和“总票数”框下的“班次指示器”框上的用户移动,该怎么办?

帮帮我,谢谢...

最佳答案

您可以将一种布局嵌套到另一种布局中,将两列作为4/8嵌套,然后在8列中使一行充满,而另一半/一半。

也许用代码更简单

<div class="row">
    <div eds-tile class="xl-4" style="height: 700px">
        <eds-tile-title>User on Shift</eds-tile-title>
        <!-- <eds-gauge [settings]="gaugeScore"></eds-gauge> -->
    </div>
    <div class="xl-8">
        <div class="row">
            <div eds-tile class="xl-6" style="height: 200px">
                <eds-tile-title>Count of Ticket Closed</eds-tile-title>
            </div>
            <div eds-tile class="xl-6" style="height: 200px">
                <eds-tile-title>Total Ticket</eds-tile-title>
            </div>
        </div>
        <div class="row">
            <div eds-tile class="xl-12" style="height: 400px">
                <eds-tile-title>User on Shift Indicator</eds-tile-title>
            </div>
        </div>
    </div>
</div>

关于css - 带行的网格垂直定位,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54483086/

10-12 05:17