🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

Using Border in CSS

Reading time 1 min
Published Sep 8, 2017
Updated Oct 10, 2019

Defining border in CSS

The CSS border property allows you to define a line border for an element:

Example
h1 {
   border: 5px solid red;
}
a {
   border: 2px solid green; 
}

It is actually a shorthand for three CSS line border subproperties:

Working with border: CSS syntax

To define a line border in CSS, follow the syntax example below:

border: width style color;

The available values will be explained in the following section.

DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Property values

Value Description Defined in Default value
width CSS border width Length units or keywords (thin, medium, thick) medium
style CSS border style Keywords (none, solid, hidden, dashed, dotted, double, groove, ridge, inset, outset) none
color CSS border color Color names, RGB, RGBA, HEX, HSL or HSLA values. currentcolor

Note: you don't need to define all of the subproperties for line borders necessarily. The order is also not important.

Browser support

Browser image
Chrome
1+
Browser image
Edge
12+
Browser image
Firefox
1+
Browser image
IE
4+
Browser image
Opera
3.5+
Browser image
Safari
1+

Mobile browser support

Browser image
Chrome
18+
Browser image
Firefox
4+
Browser image
Safari
1+