CSS Properties
CSS border-inline-color Property
Photo Credit to CodeToFun
π Introduction
The border-inline-color
property in CSS is used to set the color of the borders along the inline (left and right) sides of an element.
This property is part of the logical properties in CSS, which means it adapts to the writing mode, text direction, and orientation of the content. This is particularly useful for creating layouts that need to be flexible and accommodate different languages and writing systems.
π‘ Syntax
The syntax for the border-inline-color
property allows you to specify one or two colors. If two colors are provided, the first color applies to the start edge, and the second to the end edge. If only one color is provided, it applies to both edges.
element {
border-inline-color: color;
}
element {
border-inline-color: start-color end-color;
}
Here, color, start-color, and end-color can be a named color, a hexadecimal value, an RGB value, an HSL value, or any other valid CSS color value.
ποΈ Default Value
The default value of the border-inline-color
property is the current color of the elementβs color property. If not explicitly set, it inherits the border color from the element's border-color property.
π Property Values
Value | Description |
---|---|
named-color | A color keyword, such as blue, red, green, etc. |
hexadecimal value | A hex code representing a color, such as #ff5733. |
RGB value | An RGB color value, such as rgb(255, 87, 51). |
HSL value | An HSL color value, such as hsl(9, 100%, 60%). |
inherit | Inherits the color from its parent element. |
transparent | Makes the border color fully transparent. |
π Example
In this example, we'll set the inline border color of a div element to green on the start edge and blue on the end edge.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS border-inline-color Example</title>
<style>
div {
border-inline-width: 4px;
border-inline-style: solid;
border-inline-color: green blue;
}
</style>
</head>
<body>
<h1>Div with Custom Inline Border Colors</h1>
<div>
This div has a green border on the start side and a blue border on the end side.
</div>
</body>
</html>
π₯οΈ Browser Compatibility
The border-inline-color
property is supported in most modern browsers, including Chrome, Firefox, Safari, Edge, and Opera. However, it is always advisable to test your website across different browsers to ensure compatibility, especially if you are targeting a diverse audience.
π Conclusion
The border-inline-color
property is a versatile tool for web developers looking to create adaptable and visually appealing designs. By controlling the colors of the inline borders, you can ensure that your layout responds well to different writing modes and text directions. Experiment with different color combinations to enhance the design and readability of your web projects.
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (CSS border-inline-color Property), please comment here. I will help you immediately.