CSS 属性

CSS 属性 border-inline-start-color 指定元素的逻辑内联起始边框的颜色。然后,根据元素的书写模式、方向性和文本方向,将此颜色转换为物理边框颜色。

属性值

语法

border-inline-start-color = <color> | <image-1D> 

适用范围

所有 HTML元素。

CSS border-inline-start-color: 十六进制颜色。

以下示例演示了具有十六进制颜色值的 border-inline-start-color CSS 属性的用法。

<html>
<head>
<style>
   .container {
      background-color: #cfa3a3;
      width: 350px;
      height: 250px;
      align-items: center;
      justify-content: center;
   }
   .custom-box {
      border: 8px double #7d1010;
      border-inline-start-color: #f50f0f;
      padding: 12px;
      margin: 10px 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-box">带有 CSS 属性 border-inline-start-color 的示例。</p>
</div>
</body>
</html> 

CSS border-inline-start-color: 命名颜色。

以下示例演示了 border-inline-start-color CSS 属性与命名颜色值的用法。

<html>
<head>
<style>
   .container {
      background-color: #f5f1a9;
      width: 350px;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-box {
      border: 8px double #7d1010;
      border-inline-start-color: blue;
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 22px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-box">带有 CSS 属性 border-inline-start-color 的示例。</p>
</div>
</body>
</html> 

CSS border-inline-start-color: RGB 颜色。

以下示例演示使用 RGB 颜色值的 border-inline-start-color CSS 属性。

<html>
<head>
<style>
   .container {
      background-color: #f5f1a9;
      width: 350px;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-box {
      border: 8px double red; 
      border-inline-start-color: rgb(33, 150, 243) ;
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 22px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-box">具有 CSS 属性 border-inline-start-color 和 RGB 颜色值的示例。</p>
</div>
</body>
</html> 

CSS border-inline-start-color: HSL 颜色。

以下示例演示了 border-inline-start-color CSS 属性与 hsl 颜色值的用法。

<html>
<head>
<style>
   .container {
      background-color: #d0f1f5;
      width: 350px;
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-box {
      border: 8px double gray; 
      border-inline-start-color: hsl(210, 80%, 50%);
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 22px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-box">具有 CSS 属性 border-inline-start-color 和 HSL 颜色值的示例。</p>
</div>
</body>
</html> 

CSS border-inline-start-color: RGBA 颜色。

以下示例演示了 border-inline-start-color CSS 属性在垂直书写模式和 rgba 颜色值下的用法。

<html>
<head>
<style>
   .container {
      background-color: #c2d9f0;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   }
   .text-box {
      writing-mode: vertical-rl;
      border: 9px double #146cc4;
      border-inline-start-color: rgba(233, 171, 13, 0.8);
      padding: 15px;
      margin: 10px 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 18px;
      color: #333;
   }
</style>
</head>
<body>
<div class="container">
<p class="text-box">以垂直书写模式显示 CSS 属性 border-inline-start-color 的示例。</p>
</div>
</body>
</html>