html - Decrease the vertical height between text and horizontal rule -


i need show text horizontal rule touching text. vertical height between text , hr should less. should displayable in mobile safari browser.

http://pastie.org/1206301

set padding/margin 0 of hr: (note put hr inside because don't want hr's assuming style. give < hr/> it's own css class too.

<html> <head> <style type="text/css"> body {color:red;} h1 {color:#00ff00;} p.ex {color:rgb(0,0,255);} .new{vertical-align:text-bottom;} .new hr{padding:0;margin:0;}  </style> </head>  <body>     <div class="new">     test text     <hr/>     <div>  </body> </html> 

Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -