rbelow / blueprintcss

Automatically exported from code.google.com/p/blueprintcss
1 stars 0 forks source link

<address> should render in italic, with a line break or margin before and after the address #37

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

http://www.w3schools.com/tags/tag_address.asp

Note: The address usually renders in italic. Most browsers will add a line
break before and after the address element, but line breaks inside the text
you have to insert yourself.

Original issue reported on code.google.com by glenn.re...@gmail.com on 8 Sep 2007 at 9:11

GoogleCodeExporter commented 8 years ago
Fixed

macbook-pro:~/src/svk/blueprintcss glenn$ svk diff
=== blueprint/trunk/blueprint/lib/typography.css
==================================================================
--- blueprint/trunk/blueprint/lib/typography.css        (revision 2117)
+++ blueprint/trunk/blueprint/lib/typography.css        (local)
@@ -66,6 +66,8 @@
 dl dt       { font-weight:700; }
 dd          { margin-left: 1.5em;}

+address     { margin-top:1.5em; font-style: italic; }
+
 a:focus, 
 a:hover     { color: #000; }
 a           { color: #009; text-decoration: underline; }

Original comment by glenn.re...@gmail.com on 8 Sep 2007 at 10:31