HTML CSS examples for CSS Widget:Border
Add Border to hr
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> hr {<!--from ww w. ja va2 s. c om--> border:0; border-top:2px solid Chartreuse; opacity:.2; } </style> </head> <body> <hr> </body> </html>