HTML CSS examples for CSS Property:border-bottom
Control the spacing of the bottom border
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> h1 {<!-- www.jav a2 s . c o m--> font-family:Helvetica, Arial; font-size:1.6em; text-transform:uppercase; font-weight:normal; margin-bottom:-5px; } h1.section-title { font-family: Helvetica, Arial; font-size:32px; font-weight: normal; margin: 50px 0; border-bottom: 1px dotted #f66511; padding-bottom:5px; } h1 .section-title-bold { font-weight: bold; } .rtecenter { text-align: center; } .blue { color: #2251a4; } </style> </head> <body> <h1 class="section-title rtecenter blue"> <span class="section-title-bold">Enhance</span> Your Search </h1> </body> </html>