CSS | border-inline Property Last Updated : 26 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 values: border-width: This property value holds the width of the property. border-style: This property holds the border style that can be dashed, solid etc. border-color: This property holds the color of the border. Below examples illustrate the border-inline property in the CSS: Example 1: html <!DOCTYPE html> <html> <head> <title>CSS | border-inline Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border-inline: 5px solid yellow; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline 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 Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border-inline: 5px dashed yellow; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline Property</b> <br><br> <div class="one">A Computer Science Portal</div> </center> </body> </html> Output: Supported Browsers: The browser supported by border-inline property are listed below: Firefox Opera Edge Comment More infoAdvertise with us Next Article CSS | border-inline Property S skyridetim Follow Improve Article Tags : Web Technologies CSS CSS-Properties Similar Reads 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 CSS | border-inline-start Property The border-inline-start 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 left of the defining element. Syntax: border-inline-start: border-width| border-style| border-color; Property 2 min read CSS | border-inline-color Property 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 h 1 min read CSS border-inline-width Property The border-inline-width property sets the width of an element's borders in the inline direction. It specifies the thickness of the inline-start and inline-end borders, adapting to the text direction. This property ensures consistent border styling in both left-to-right and right-to-left layouts. Syn 2 min read CSS border-left Property The border-left property in CSS is used to set all bottom left properties in one line. It is used to set the width, style, and color of the left border.Syntax: border-left: border-width border-style border-color|initial|inherit; border-left is a shorthand to set the below property values.Property Va 2 min read Like