HTML CSS examples for CSS Widget:Border Style
Trapezoidal tab with borders
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #trapezoid {<!-- w w w . ja va 2 s . c om--> border-bottom: 100px solid blue; border-left: 100px solid transparent; border-right: 100px solid transparent; height: 0; width: 200px; } </style> </head> <body> <div id="trapezoid"></div> </body> </html>