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.