CSS | border-inline-color Property Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The border-inline-color property in CSS is used to set the individual logical inline border-color property values in a single place in the style sheet. It sets the border color top, and bottom of the defining border element. Syntax: border-inline-color: color; Property values: color: This property holds the color of the border. Below examples illustrate the border-inline-color property in the CSS: Example 1: html <!DOCTYPE html> <html> <head> <title>CSS | border-inline-color Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px solid cyan; border-inline-color: yellow; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline-color Property</b> <br><br> <div class="one">A Computer Science Portal</div> </center> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <head> <title>CSS | border-inline-color Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px dotted cyan; border-inline-color: yellow; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline-color Property</b> <br><br> <div class="one">A Computer Science Portal</div> </center> </body> </html> Output: Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-color#:~:text=The%20border-inline-color%20CSS,%2C%20directionality%2C%20and%20text%20orientation. Supported Browsers: The browser supported by border-inline-color property are listed below: Firefox Opera Edge Comment More infoAdvertise with us Next Article CSS border-left-color Property S skyridetim Follow Improve Article Tags : Web Technologies CSS CSS-Properties Similar Reads CSS | border-inline-end-color Property The border-inline-end-color property in CSS is used to define the individual logical inline-end border-color property values in a single place in the style sheet. This property sets the border-color at the bottom of the defining element border. Syntax: border-inline-end-color: border-color; Property 1 min read CSS border-inline-start-color Property The border-inline-start-color property in CSS allows you to set the color of the inline-start border of an element. This is a logical property that adapts based on the writing mode (e.g., left-to-right or right-to-left), making it useful for multilingual layouts.Syntax:border-inline-start-color: bor 2 min read CSS | border-inline Property The border-inline property in CSS is used to set the individual logical block inline border property values in a single place in the style sheet. It sets the inline border-top(left) and bottom(right) of the defining element. Syntax: border-inline: border-width| border-style| border-color; Property v 2 min read CSS border-left-color Property The border-left-color Property is used to set the color of the left-border in an Element. It is mandatory to declare the border-style or the border-left-style property before the border-left-color property. Syntax:border-left-color: color|transparent|initial|inherit; Property Valuescolor: It sets th 3 min read CSS border-color Property The CSS border-color property allows developers to define the color of an element's border, enhancing the visual design of a webpage. It works in conjunction with the border property to provide control over the appearance of borders using various color values like-named colors, hex codes, or RGB val 5 min read CSS | border-inline-end Property The border-inline-end property in CSS is used to define the individual logical inline-end border property values in a single place in the style sheet. This property place the border at the bottom of the defining element. Syntax: border-inline-end: border-width|border-style|border-color; Property val 2 min read Like