简体中文
CSS 属性 border-top是属性 border-top-color, border-top-style, 和border-top-width 的三者的缩写。这些属性都是在描述一个元素的上方的边框border。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
Chrome | Edge | Firefox | Opera | Safari | IE |
---|---|---|---|---|---|
√( 1 ) | √( 12 ) | √( 1 ) | √( 3.5 ) | √( 1 ) | √( 4 ) |
border-top: <line-width> || <line-style> || <color>;
0
Template
Script
<template>
<view style="flex-grow: 1;">
<view>
<text>border-top: 5px dashed blue</text>
<view class="common" style="border-top: 5px dashed blue;"></view>
</view>
</view>
</template>
<style>
.common {
width: 250px;
height: 250px;
background-color: gray;
}
</style>