border-right.uvue 327 字节
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1 2 3
<template>
  <view style="flex-grow: 1;">
    <view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
4 5
      <text>border-right: 5px solid blue</text>
      <view class="common" style="border-right: 5px solid blue;"></view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
6 7 8 9 10 11 12 13 14 15
    </view>
  </view>
</template>

<script>

</script>

<style>
  .common {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
16 17
    width: 250px;
    height: 250px;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
18 19 20
    background-color: gray;
  }
</style>