Curriculum
Course: CSS
Login

Curriculum

CSS

CSS INTRODUCTION

0/1

CSS Selectors

0/1

CSS Comments

0/1

CSS Padding

0/1

CSS Box Model

0/1

CSS Combinators

0/1

CSS Pseudo-classes

0/1

CSS Pseudo-elements

0/1

CSS Dropdowns

0/1

CSS Image Gallery

0/1

CSS Image Sprites

0/1

CSS Counters

0/1

CSS Website Layout

0/1

CSS Specificity

0/1

CSS Math Functions

0/1
Text lesson

Border Shorthand

To streamline the code, you can consolidate all individual border properties into a single shorthand property.

The border property serves as a shorthand for the following individual border properties:

  • border-width
  • border-style (mandatory)
  • border-color.

Example

{
  border: 5px solid red;
}

Outcome:

Image

It is also possible to specify all individual border properties for a single side.

Left Border

{
  border-left: 6px solid red;
}

Outcome:

Image

Bottom Border

{
  border-bottom: 6px solid red;

}

Outcome:

Image