CSS - border-inline-end-color Property



The CSS property border-inline-end-color specifies the color of an element's logical inline-end border, this color is then converted into the element's physical border color according to the writing mode, direction, and text orientation.

It's actual mapping, depending on the values given for writing-mode, direction, and text-orientation, corresponds to properties like border-top-color, border-right-color, border-bottom-color, or border-left-color.

Possible Value

    color - The color of the border.

Syntax

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

Applies to

All the HTML elements.

CSS border-inline-end-color - Using named color.

The following example demonstrates the usage of border-inline-end-color property along with named 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 #e74c3c;
      border-inline-end-color: #3498db;
      border-inline-end-style: dashed;
      border-inline-end-width: 10px;
      border-inline-end-color: lightgreen;
      padding: 12px;
      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-end-color.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Using RGB color.

The following example demonstrates the usage of border-inline-end-color property along with RGB 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 #e74c3c;
      border-inline-end-style: dashed;
      border-inline-end-width: 10px;
      border-inline-end-color: rgb(52, 152, 219); 
      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-end-color using RGB values.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Using RGBA color.

The following example demonstrates the usage of border-inline-end-color property along with RGBA 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 #e74c3c;
      border-inline-end-style: solid;
      border-inline-end-width: 10px;
      border-inline-end-color: rgba(125, 20, 150, 0.8); 
      padding: 12px;
      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-end-color using RGBA values.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Using HSL color.

The following example demonstrates the usage of border-inline-end-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 #e74c3c;
      border-inline-end-style: dashed;
      border-inline-end-width: 10px;
      border-inline-end-color: hsl(120, 70%, 50%); 
      padding: 12px;
      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-end-color using HSL values.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Using HSLA color.

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

    
<html>
<head>
<style>
   .container {
      background-color: lightgrey;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid #e74c3c;
      border-inline-end-style: dashed;
      border-inline-end-width: 10px;
      border-inline-end-color: hsla(210, 80%, 60%, 0.6); 
      padding: 12px;
      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-end-color using HSLA value.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Using Transparent.

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

    
<html>
<head>
<style>
   .container {
      background-color: lightblue;
      width: 350px;
      height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .custom-border {
      border: 5px solid #e74c3c;
      border-inline-end-color: transparent; 
      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-end-color using HSLA value.</p>
</div>
</body>
</html>

CSS border-inline-end-color - Writing Mode

The following example demonstrates the usage of border-inline-end-color property with veritcal writing mode.

    
<html>
<head>
<style>
   .custom-container {
      background-color: #f0f0f0;
      width: 300px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .unique-border {
      writing-mode: vertical-rl;
      border: 6px dashed black;
      border-inline-end-color: rgb(120, 80, 200, 0.6);
      padding: 14px;
      text-align: center;
      font-family: 'Verdana', sans-serif;
      font-size: 18px;
      color: #333;
      }
</style>
</head>
<body>
<div class="custom-container">
<p class="unique-border">An example border-inline-end-color and writing mode: vertical-rl.</p>
</div>
</body>
</html>
Advertisements