Notes to self

Easy solutions to tricky problems
Feb 16
Permalink

Styling <abbr>

The default dotted line underneath an <abbr> element (in among others Firefox)  is a dotted border. So to get rid of it:


abbr {
  border-bottom: none;
}