html - Adding Horizontal line Below The Text Like In the Image? -


enter image description here code, need add horizontal border in image

<section class="about">     <div class="container">         <h1 class="text-center">the resturant</h1>         <h3 class="text-center">a little , brief history of   how   started</h3>         <div class="about-border"></div>     </div>  </section> 

try

.about-border {     display: block;     width: 80px;     height: 3px;     background: #f1cd8f;     margin: 20px auto; }  /* optional css center align heading text*/ .about h1, .about h2 {    text-align: center; } 

fiddle: https://jsfiddle.net/9oapmz9b/


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -