HTML Border Code
This page contains HTML code for adding borders to your html elements. In these examples, the HTML border is applied to the div
tag but you can apply borders to any HTML element you wish.
Solid Border
To specify a solid border, use the 'solid' keyword.
This code results in:
This box has a solid html border.
Dotted Border
To specify a dotted border, use the 'dotted' keyword.
This code results in:
This box has a solid html border.
Dashed Border
To specify a border made up of dashes, use the 'dashed' keyword.
This code results in:
This box has a dashed html border.
Mixed Border
You can use a mixture of borders styles like this:
This code results in:
Create borders for any HTML element.