- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Selectors
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Border Block
- CSS - Border Inline
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursor
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS - Inline Block
- CSS - Dropdowns
- CSS - Visibility
- CSS - Overflow
- CSS - Clearfix
- CSS - Float
- CSS - Arrows
- CSS - Resize
- CSS - Quotes
- CSS - Order
- CSS - Position
- CSS - Hyphens
- CSS - Hover
- CSS - Display
- CSS - Focus
- CSS - Zoom
- CSS - Translate
- CSS - Height
- CSS - Hyphenate Character
- CSS - Width
- CSS - Opacity
- CSS - Z-Index
- CSS - Bottom
- CSS - Navbar
- CSS - Overlay
- CSS - Forms
- CSS - Align
- CSS - Icons
- CSS - Image Gallery
- CSS - Comments
- CSS - Loaders
- CSS - Attr Selectors
- CSS - Combinators
- CSS - Root
- CSS - Box Model
- CSS - Counters
- CSS - Clip
- CSS - Writing Mode
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - Pointer Events
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS Advanced
- CSS - Grid
- CSS - Grid Layout
- CSS - Flexbox
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Paged Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS - Image Sprites
- CSS - Important
- CSS - Data Types
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS - Rounded Corner
- CSS - Border Images
- CSS - Multi Background
- CSS - Color
- CSS - Gradients
- CSS - Box Shadow
- CSS - Box Decoration Break
- CSS - Caret Color
- CSS - Text Shadow
- CSS - Text
- CSS - 2d transform
- CSS - 3d transform
- CSS - Transition
- CSS - Animation
- CSS - Multi columns
- CSS - Box Sizing
- CSS - Tooltips
- CSS - Buttons
- CSS - Pagination
- CSS - Variables
- CSS - Media Queries
- CSS - Functions
- CSS - Math Functions
- CSS - Masking
- CSS - Shapes
- CSS - Style Images
- CSS - Specificity
- CSS - Custom Properties
- CSS Responsive
- CSS RWD - Introduction
- CSS RWD - Viewport
- CSS RWD - Grid View
- CSS RWD - Media Queries
- CSS RWD - Images
- CSS RWD - Videos
- CSS RWD - Frameworks
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS - border-inline
The CSS property border-inline is a shorthand property that sets the values for different logical inline border attributes, combining them into a single statement.
The writing mode, directionality, and text orientation of the element determine how the border-inline attribute is mapped to actual boundaries.
Depending on values of writing-mode, direction, and text-orientation, border-inline behaves as either border-top and border-bottom or border-right and border-left properties.
Use the border-block property, which sets both border-block-start and border-block-end, to establish borders in other dimension.
Possible values
The border-inline is specified with one or more of the following, in any order:
<'border-width'> - The width of the border.
<'border-style'> - The line style of the border.
<color> - The color of the border.
Constituent properties
This property is a shorthand for the following CSS properties:
Syntax
border-inline = <'border-block-start'>
Applies to
All the HTML elements.
CSS border-inline - Basic Example
The following example demonstrates the usage of border-inline CSS property.
<html> <head> <style> .container { background-color: #ffeeba; width: 450px; height: 450px; display: flex; align-items: center; justify-content: center; font-size: 20px; border-radius: 10px; box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); } .custom-border { border-inline: 6px dashed #3498db; padding: 10px; font-weight: bold; color: #333; } </style> </head> <body> <div class="container"> <p class="custom-border">A Example with border-inline property</p> </div> </body> </html>
CSS border-inline - Writing Mode
The following example demonstrates the usage of border-inline CSS property with vertical writing mode.
<html> <head> <style> .container { background-color: #fed8b1; width: 400px; height: 400px; display: flex; align-items: center; justify-content: center; font-size: 18px; border-radius: 15px; box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6); writing-mode: vertical-rl; } .demo-border { border:4px solid black; border-inline: 0.9rem groove #e74c3c; padding: 10px; font-weight: bold; color: #333; } </style> </head> <body> <div class="container"> <p class="demo-border">A border-inline example with vertical text.</p> </div> </body> </html>
Related Properties
The table given below lists some related properties:
Property | Description |
---|---|
border-inline-width | Defines the width of the logical inline borders of an element. |
border-inline-start-width | Defines the width of the logical inline-start border of an element. |
border-inline-end-width | Defines the width of the logical inline-end border of an element. |
border-inline-end | A shorthand property for setting the individual logical inline-end border property |
border-inline-color | Defines the color of the logical inline borders of an element. |
border-inline-start-color | Defines the color of the logical inline start border of an element. |
border-inline-end-color | Defines the color of the logical inline-end border of an element. |
border-inline-start | A shorthand property for setting the individual logical inline-start border property. |
border-inline-style | Defines the style of the inline border of an element. |
border-inline-start-style | Defines the style of the logical inline start border of an element. |
border-inline-end-style | Defines the style of the logical inline end border of an element. |