# border-bottom

border-bottom 简写属性把下边框的所有属性:border-bottom-color,border-bottom-style 与 border-bottom-width 设置到了一个声明中。这些属性描述了元素的下边框样式。

# uni-app x 兼容性

Web Android iOS
4.0 3.9 4.11

# 浏览器兼容性

Chrome Edge Firefox Opera Safari IE
√( 1 ) √( 12 ) √( 1 ) √( 3.5 ) √( 1 ) √( 4 )

# 语法

border-bottom: <line-width> || <line-style> || <color>;

# 默认值

0

# 示例

hello uni-app x

扫码体验(手机浏览器跳转到App直达页)

Template

Script

<template>
  <view style="flex-grow: 1;">
    <view>
      <text>border-bottom: 5px dashed blue</text>
      <view class="common" style="border-bottom: 5px dashed blue;"></view>
    </view>
  </view>
</template>



<style>
  .common {
    width: 250px;
    height: 250px;
    background-color: gray;
  }
</style>

# 参见