HTML CSS examples for CSS Property:border-bottom
Adding block bottom border
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #recurring-header-wrapper {<!--from w w w . ja v a 2s. co m--> display: block; padding-bottom: 10px; border-bottom: 1px solid #ccc; overflow: auto; } .recurring-header-group { float: left; padding-right: 40px; } .recurring-header-label { font-weight: bold; } </style> </head> <body> <div id="recurring-header-wrapper"> <div class="recurring-header-group"> <div class="recurring-header-label"> Label </div> <div class="recurring-header-item"> Item </div> </div> <div class="recurring-header-group"> <div class="recurring-header-label"> Label </div> <div class="recurring-header-item"> Item </div> </div> </div> </body> </html>