create a double bottom border in CSS - HTML CSS CSS Property

HTML CSS examples for CSS Property:border-bottom

Description

create a double bottom border in CSS

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

.info { border-bottom: 3px double #000000;
}


      </style> 
 </head> <!--from  w  ww.j  a v a2s .c o  m-->
 <body> 
  <span class="info">This has a double border</span>  
 </body>
</html>

Related Tutorials