Commit c1775da1 authored by Jacob Rask's avatar Jacob Rask

Add class for upper case abbreviations, aka initialisms

Read more:
 * http://en.wikipedia.org/wiki/Abbreviation
 * http://en.wikipedia.org/wiki/Initialism
parent f08b4076
...@@ -419,6 +419,10 @@ abbr[title] { ...@@ -419,6 +419,10 @@ abbr[title] {
border-bottom: 1px dotted #ddd; border-bottom: 1px dotted #ddd;
cursor: help; cursor: help;
} }
abbr.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote { blockquote {
padding: 0 0 0 15px; padding: 0 0 0 15px;
margin: 0 0 18px; margin: 0 0 18px;
......
...@@ -158,6 +158,10 @@ abbr[title] { ...@@ -158,6 +158,10 @@ abbr[title] {
border-bottom: 1px dotted #ddd; border-bottom: 1px dotted #ddd;
cursor: help; cursor: help;
} }
abbr.initialism {
font-size: 90%;
text-transform: uppercase;
}
// Blockquotes // Blockquotes
blockquote { blockquote {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment