CSS | border-inline-start-style Property
The border-inline-start-style property is an inbuilt property in CSS it is used to define the individual logical inline-end border property values in a single place in the style sheet. This property sets the border-style at the left of the defining element border.
Syntax:
border-inline-start-style: border-style;
Property values:
- border-style: This property holds the style of the border.
Below examples illustrate the border-inline-start-style property in the CSS:
Example 1:
html
<!DOCTYPE html> < html > < head > < title >CSS | border-inline-start-style Property</ title > < style > h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px solid gray; border-inline-start-style: dotted; background-color: purple; } </ style > </ head > < body > < center > < h1 >Geeksforgeeks</ h1 > < b >CSS | border-inline-start-style 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-start-style Property</ title > < style > h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px solid black; border-inline-start-style: dashed; background-color: purple; } </ style > </ head > < body > < center > < h1 >Geeksforgeeks</ h1 > < b >CSS | border-inline-start-style Property</ b > < br >< br > < div class="one">A Computer Science Portal</ div > </ center > </ body > </ html > |
Output:
Supported Browsers: The browsers supported by border-inline-start-style property are listed below:
- Chrome 69
- Firefox 41
- Opera 56
- Edge 79
- Safari 12.1
Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-start-style
Please Login to comment...