Control the spacing of the bottom border - HTML CSS CSS Property

HTML CSS examples for CSS Property:border-bottom

Description

Control the spacing of the bottom border

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials