CSS | border-inline-end-style Property Last Updated : 27 Mar, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The border-inline-end-style 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 sets the border-style at the bottom of the defining element border. Syntax: border-inline-end-style: border-style; Property values: border-style: This property holds the style of the border. Below examples illustrate the border-inline-end-style property in the CSS: Example 1: html <!DOCTYPE html> <html> <head> <title>CSS | border-inline-end-style Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px solid gray; border-inline-end-style: dotted; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline-end-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-end-style Property</title> <style> h1 { color: green; } div { background-color: yellow; width: 220px; height: 40px; } .one { border: 5px solid black; border-inline-end-style: dashed; background-color: purple; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | border-inline-end-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-end-style property are listed below: Firefox Opera Edge Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-color Comment More infoAdvertise with us Next Article CSS | border-inline-end-style 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-end-width Property The border-inline-end-width 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 sets the border-width at the bottom of the defining element border. Syntax: border-inline-end-width: border-width; Property value 1 min read 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: 1 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-left-style Property The CSS border-left-style property is used to set the style of the left border of an element.Default Value: noneSyntax:Â Â border-left-style: none| hidden| dotted| dashed| solid| double | groove| ridge| inset| outset| initial| inherit;Properties Value:Â ValueDescriptionnoneIt sets no left border.hidden 3 min read Like