The text-decoration property specifies the decoration added to text. (underline, overline, line-through)

Example:

.selector {
      text-decoration: overline;
}

.selector {
      text-decoration: line-through;
}

.selector {
     text-decoration: underline;
}

 
Source: http://www.w3schools.com/cssref/pr_text_text-decoration.asp