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.
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
Post a Comment