CSS - border-inline-color Property



The logical inline border color of an element is specified by its border-inline-color CSS property; the element's writing mode, directionality, and text orientation determine the actual border color.

Possible Value

  • color - The color of the border.

Syntax

border-inline-color =  <'border-inline-color'> {1,2}

Applies to

All the HTML elements.

CSS border-inline-color - Using HEX values

The following example demonstrates the usage of border-inline-color property along with HEX color value.

    
<html>
<head>
<style>
   .container {
      background-color: #cdfad9;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid lightgrey;
      border-inline-color: #048526;
      border-inline-style: dashed;
      border-inline-width: 10px;
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-border">A example with css property border-inline-color.</p>
</div>
</body>
</html>

CSS border-inline-color - Using RGB values

The following example demonstrates the usage of border-inline-color property along with RGB color value.

    
<html>
<head>
<style>
   .container {
      background-color: #faf9d9;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid #e74c3c;
      border-inline-style: solid;
      border-inline-width: 10px;
      border-inline-color: rgb(209, 203, 4); 
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-border">An example with css property border-inline-color using RGB values.</p>
</div>
</body>
</html>

CSS border-inline-color - Using RGBA values

The following example demonstrates the usage of border-inline-color property along with RGBA color value.

    
<html>
<head>
<style>
   .container {
      background-color: #f2b6ef;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid white;
      border-inline-style: solid;
      border-inline-width: 10px;
      border-inline-color: rgba(203, 10, 109, 0.8); 
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-border">An example with css property border-inline-color using RGBA values.</p>
</div>
</body>
</html>

CSS border-inline-color - Using HSL values

The following example demonstrates the usage of border-inline-color property along with HSL color value.

    
<html>
<head>
<style>
   .container {
      background-color: lightcyan;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid blue;
      border-inline-style: double;
      border-inline-width: 10px;
      border-inline-color: hsl(120, 70%, 50%); 
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-border">An example with css property border-inline-color using HSL values.</p>
</div>
</body>
</html>

CSS border-inline-color - Using named color

The following example demonstrates the usage of border-inline-color property along with named color value and veritcal writing mode.

    
<html>
<head>
<style>
   .container {
      background-color: #f2ebc9;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
    writing-mode: vertical-rl;
      border: 5px solid #a6890c;
      border-inline-style: double;
      border-inline-width: 10px;
      border-inline-color: red; 
      padding: 12px;
      margin: 10px;
      text-align: center;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      color: #2c3e50;
   }
</style>
</head>
<body>
<div class="container">
<p class="custom-border">An example with css property border-inline-color using named value and vertical writing mode.</p>
</div>
</body>
</html>
Advertisements