1<p style="border:3px; border-style:solid; border-color:#FF0000; padding: 1em;">
2 First example with text surrounded by a red border.<br>This example also has multiple lines.
3</p>
1text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
1/*All types of border*/
2p.dotted {border-style: dotted;}
3p.dashed {border-style: dashed;}
4p.solid {border-style: solid;}
5p.double {border-style: double;}
6p.groove {border-style: groove;}
7p.ridge {border-style: ridge;}
8p.inset {border-style: inset;}
9p.outset {border-style: outset;}
10p.none {border-style: none;}
11p.hidden {border-style: hidden;}
12p.mix {border-style: dotted dashed solid double;}
1<form>
2<fieldset>
3 <legend>Enter the details below</legend>
4 <!--Inputs or anything-->
5</fieldset>
6</form>