HTML CSS examples for CSS Widget:Border
Change Thickness of underline with border-bottom
<html> <head> <style type="text/css"> h1 {<!-- w w w . j a va 2 s. co m--> border-bottom:4px solid Chartreuse; display:inline; } </style> </head> <body> <div> <h1>Hello, world</h1> </div> </body> </html>