The CSS border properties define the borders around an element:
CSS Border Properties
The CSS border properties allow you to specify the style and color of an element's border.Border Style
The border-style property specifies what kind of border to display.None of the other border properties will have any effect unless border-style is set.
border-style Values
none: Defines no border
dotted: Defines a dotted border
dashed: Defines a dashed border
solid: Defines a solid border
double: Defines two borders. The width of the two borders are the same as the border-width value
groove: Defines a 3D grooved border. The effect depends on the border-color value
ridge: Defines a 3D ridged border. The effect depends on the border-color value
inset: Defines a 3D inset border. The effect depends on the border-color value
outset: Defines a 3D outset border. The effect depends on the border-color value
Border Width
The border-width property is used to set the width of the border.The width is set in pixels, or by using one of the three pre-defined values: thin, medium, or thick.
Note: The "border-width" property does not work if it is used alone. Use the "border-style" property to set the borders first.
Example
|
Border Color
The border-color property is used to set the color of the border. The color can be set by:- name - specify a color name, like "red"
- RGB - specify a RGB value, like "rgb(255,0,0)"
- Hex - specify a hex value, like "#ff0000"
Note: The "border-color" property does not work if it is used alone. Use the "border-style" property to set the borders first.
Example
|
Border - Individual sides
In CSS it is possible to specify different borders for different sides: Example
|
Example
|
- border-style:dotted solid double dashed;
- top border is dotted
- right border is solid
- bottom border is double
- left border is dashed
- border-style:dotted solid double;
- top border is dotted
- right and left borders are solid
- bottom border is double
- border-style:dotted solid;
- top and bottom borders are dotted
- right and left borders are solid
- border-style:dotted;
- all four borders are dotted
Border - Shorthand property
As you can see from the examples above, there are many properties to consider when dealing with borders.To shorten the code, it is also possible to specify all the border properties in one property. This is called a shorthand property.
The shorthand property for the border properties is "border":
Example
|
- border-width
- border-style
- border-color
CSS Outline Properties
The outline properties specifies the style, color, and width of an outline.The number in the "CSS" column indicates in which CSS version the property is defined (CSS1 or CSS2).
Property | Description | Values | CSS |
---|---|---|---|
outline | A shorthand property for setting all the outline properties | outline-color outline-style outline-width | 2 |
outline-color | Sets the color of the outline around an element | color invert | 2 |
outline-style | Sets the style of the outline around an element | none dotted dashed solid double groove ridge inset outset | 2 |
outline-width | Sets the width of the outline around an element | thin medium thick length |