- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Borders
In CSS, borders are used to create visible boundaries around elements, providing structure and separation in a web page's layout. CSS provides several properties to control the style, width, color, and positioning of borders. Here are the key border-related properties in CSS:
- Border Style (border-style): Specifies the style of the border. Common values include solid, dashed, dotted, double, groove, ridge, inset, and outset.
.box {
border-style: solid; /* Solid border */
}
.dashed-border {
border-style: dashed; /* Dashed border */
}
- Border Width (border-width): Sets the width of the border. You can use pixels (px), ems (em), percentages (%), or other units.
.box {
border-width: 2px; /* 2-pixel border */
}
.thick-border {
border-width: 5px; /* 5-pixel border */
}
- Border Color (border-color): Specifies the color of the border. You can use named colors, hexadecimal codes, RGB values, or color keywords.
.box {
border-color: red; /* Red border */
}
.custom-color-border {
border-color: #00FF00; /* Green border */
}
- Border Shorthand (border): The border shorthand property allows you to set all border properties (style, width, color) in one line.
.box {
border-color: red; /* Red border */
}
.custom-color-border {
border-color: #00FF00; /* Green border */
}
- Rounded Corners (border-radius): Adds rounded corners to the border. You can specify the radius of each corner individually or use a single value for all corners.
.box {
border-radius: 10px; /* Rounded corners with a 10-pixel radius */
}
.rounded-top {
border-top-left-radius: 20px;
border-top-right-radius: 20px; /* Rounded top corners with a 20-pixel radius */
}
- Border Image (border-image): Allows you to use an image as the border instead of a solid color or style. You can specify the image URL, slice values, repeat behavior, and border width.
.image-border {
border-image: url('path/to/image.png') 30 round; /* Image border with slice, repeat, and width */
}
Borders are versatile in CSS and can be customized extensively to achieve various visual effects and styles. Understanding how to use border properties effectively allows you to create visually appealing and well-structured layouts for your web pages.