使用uni-row分割出左右两个div,左边的div是一个圆角的方形,里面水平垂直居中了两行上下结构的文字,上面的文字是警告,下面的文字是数量,然后右边的div又被分割成了2个宽度相同,高度各占一半的div,每个div都有一行文字并且垂直居中
时间: 2024-03-03 12:53:50 浏览: 112
好的,可以使用以下代码实现:
```html
<div class="container">
<div class="left">
<div class="box">
<div class="top">警告</div>
<div class="bottom">数量</div>
</div>
</div>
<div class="right">
<div class="box">右边1</div>
<div class="box">右边2</div>
</div>
</div>
<style>
.container {
display: flex;
}
.left {
width: 200px;
height: 100px;
background-color: #ccc;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.right {
flex: 1;
display: flex;
flex-direction: column;
}
.box {
height: 50%;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #000;
}
.top {
font-size: 24px;
}
.bottom {
font-size: 20px;
}
</style>
```
这段代码中,我们使用了 `display: flex` 来实现布局,并使用了 `border-radius` 来实现圆角效果。左边的盒子使用了 `justify-content` 和 `align-items` 来实现水平和垂直居中。右边的盒子使用了 `flex: 1` 来占据剩余的空间,同时将 `flex-direction` 设置为 `column` 来实现垂直排列。每个右边的盒子都使用了 `height: 50%` 来占据一半的高度,并使用 `display: flex` 和 `justify-content` 和 `align-items` 来实现垂直居中。
阅读全文