CSS border-width property
Description
CSS border-width is a short hand property of border-top-width, border-right-width, border-bottom-width, and border-left-width properties. It defines the width for all the sides of a block.
Syntax
border-width : border-top-width border-right-width border-bottom-width border-left-width
Property values
mediumDefault
-
It is the same as border-width: medium medium medium medium;
border-width: medium;
10px 15px
-
It is the same as border-width: 10px 15px 10px 15px;
border-width: 10px 15px;
10px 15px 20px
-
It is the same as border-width: 10px 15px 20px 15px;
border-width: 10px 15px 20px;
10px 15px 20px 25px
-
It is the same as border-width: 10px 15px 20px 25px;
border-width: 10px 15px 20px 25px;
Applicable to
It applies to all elements
From web4college, the free CSS digger
#CSS digger
Was this article helpful?