CSS - border-top-style 属性



CSS border-top-style 属性设置元素上边框的样式。

语法

border-top-style: none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset | initial | inherit;

属性值

描述
none 指定无边框。默认值。
hidden 类似于 none,但在表格元素的边框冲突解决中有所不同。
dotted 指定点状边框。
dashed 指定虚线边框。
solid 指定实线边框。
double 指定双线边框。
groove 指定 3D 凹槽边框。效果取决于 border-color 值。
ridge 指定 3D 凸脊边框。效果取决于 border-color 值。
inset 指定 3D 内嵌边框。效果取决于 border-color 值。
outset 指定 3D 外凸边框。效果取决于 border-color 值。
initial 将属性设置为默认值。
inherit 从父元素继承该属性。

CSS 上边框样式属性示例

以下示例使用不同的值解释了 border-top-style 属性。

无上边框样式

要没有上边框,我们使用 none 值。在以下示例中,使用了 none 值。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: none;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'none' border-top
      </h1>
      <p class="border-none">
         This border has 'none' border-top
      </p>
   </div>
</body>

</html>

透明上边框样式

要有一个存在但不可见的边框,我们可以使用 transparent 值。transparent 值创建不可见边框,而 none 值则创建无边框。以下示例显示了此区别。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .borders {
         padding: 15px;
         margin: 8px;
         text-align: center;
      }

      .border1 {
         border: 8px solid silver;
         border-top-style: none;
      }

      .border2 {
         border: 8px solid silver;
         border-top-color: gold;
         border-top-style: transparent;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <p class="borders border1">
         This border is using none value, 
         so it does not have border-top
         indicated by the gap.
      </p>
      <p class="borders border2">
         This border is using transparent value,
         so it has an invisible border. Since the border
         exist, the border-top color is applied to it 
         indicated by the gold color.
      </p>
   </div>
</body>

</html>

点状上边框样式

要创建点状上边框,我们使用 dotted 值。在以下示例中,dotted 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: dotted;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'dotted' border-top
      </h1>
      <p class="border-none">
         This border has 'dotted' border-top
      </p>
   </div>
</body>

</html>

虚线边框样式

要创建虚线边框,我们使用 dashed 值。在以下示例中,dashed 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: dashed;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'dashed' border-top
      </h1>
      <p class="border-none">
         This border has 'dashed' border-top
      </p>
   </div>
</body>

</html>

实线边框样式

要创建实线边框,我们使用 solid 值。在以下示例中,solid 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: solid;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'solid' border-top
      </h1>
      <p class="border-none">
         This border has 'solid' border-top
      </p>
   </div>
</body>

</html>

双线边框样式

要创建双线边框,我们使用 double 值。在以下示例中,double 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: double;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'double' border-top
      </h1>
      <p class="border-none">
         This border has 'double' border-top
      </p>
   </div>
</body>

</html>

凹槽边框样式

要创建凹槽边框,我们使用 groove 值。在以下示例中,groove 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: groove;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'groove' border-top
      </h1>
      <p class="border-none">
         This border has 'groove' border-top
      </p>
   </div>
</body>

</html>

凸脊边框样式

要创建凸脊边框,我们使用 ridge 值。在以下示例中,ridge 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: ridge;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'ridge' border-top
      </h1>
      <p class="border-none">
         This border has 'ridge' border-top
      </p>
   </div>
</body>

</html>

内嵌边框样式

要创建内嵌边框,我们使用 inset 值。在以下示例中,inset 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: inset;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'inset' border-top
      </h1>
      <p class="border-none">
         This border has 'inset' border-top
      </p>
   </div>
</body>

</html>

外凸边框样式

要创建外凸边框,我们使用 outset 值。在以下示例中,outset 值与 border-top-style 属性一起使用。

示例

<!DOCTYPE html>
<html>

<head>
   <style>
      .border-none {
         border-top-style: outset;
         border-top-color: red;
         border-top-width: 6px;
         text-align: center;
         padding: 15px;
         margin: 8px;
      }

      h1 {
         background-color: lightgreen;
      }

      p {
         border: 6px solid silver;
      }
   </style>
</head>

<body>
   <h2>
      CSS border-top-style property
   </h2>
   <div>
      <h1 class="border-none">
         This heading has 'outset' border-top
      </h1>
      <p class="border-none">
         This border has 'outset' border-top
      </p>
   </div>
</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
border-top-style 1.0 5.5 1.0 1.0 9.2
css_properties_reference.htm
广告