Skip to main content

Text Under and Over line - CSS

 

Framing text without borders can be done in purely css using only with text-decoration.

Not supported on Safari.

DEMO

Underline Overline

CSS

h2 {
  text-decoration: underline overline red;
}

Comments