HTML CSS examples for CSS Property:border-bottom
create a double bottom border in CSS
<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>