gpt4 book ai didi

css - 带行的网格垂直定位

转载 作者:行者123 更新时间:2023-11-28 00:29:29 25 4
gpt4 key购买 nike

我的观点是这样的: enter image description here

还有我的代码:

<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>

如果我想将 User on Shift Indicator 框移动到 Count of Ticket Closed 框和 Total Ticket 框下,我应该怎么做?

帮帮我,谢谢...

最佳答案

您可以将一个布局嵌套到另一个布局中,两列为 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com