ricardozea
10/14/2014 - 3:18 PM

CSS Quotes

CSS Quotes

//http://css-tricks.com/almanac/properties/q/quotes/

blockquote, q { quotes:"“" "”" "‘" "’"; font-style:italic;
	&:before { content:open-quote; margin-right:5px; }
	&:after { content:close-quote; margin-left:5px; }
	p { display:inline; }
}

/*The first pair of quotes in the value are the opening and closing quotes.
The second pair are the opening and closing quotes for quotes nested
one level deep within other quotes that also use the quotes property. 
E.g. a <q> element inside of a <q> element.*/