css border

CSS
.bordersA {
  /* Singe rule. Adds a 1px black solid border */
  border: 1px solid #000000;
}

/* Multi rule for better width control */
.bordersB {
  border-color: #000000;
  border-style: solid;
  /* TOP & BOTTOM: 5px, LEFT & RIGHT: 20px */
  border-width: 5px 20px;
  /* OR - TOP: 5px, RIGHT: 20px, BOTTOM: 10px, LEFT: 15px */
  border-width: 5px 20px 10px 15px;
}

/* Specific rules for even further width, style & color control */
.borderTopWarning {
  /* Replace `top` with `right`, `bottom` or `left` */
  border-top-color: #b52e2e;
  border-top-style: dashed;
  border-top-width: 3px;
}h1 {
  border: 5px solid red;
}border-style: /*Style Prefered*/;

/*Styles can be:

dotted
dashed
solid
double
groove
ridge
inset
outset
nonce
hidden

*/div {
	border-style: dotted;
}p.dotted {border-style: dotted;}
p.dashed 
{border-style: dashed;}
p.solid {border-style: solid;}
p.double 
{border-style: double;}
p.groove {border-style: groove;}
p.ridge 
{border-style: ridge;}
p.inset {border-style: inset;}
p.outset 
{border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}

p.mix {border-style: dotted dashed solid double;} 
Source

Also in CSS: