HTML CSS examples for CSS Widget:Shape
Create circle with shade
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> body {<!--from w w w . j av a 2 s. co m--> background: white; } div { background: #dddddd; border-radius: 40px; box-shadow: 10px 10px 5px pink; display: inline-block; padding: 0px 10px; text-align: justify; -moz-border-radius: 40px; } </style> </head> <body> <h1>Test Test test Test</h1> <div id="start" class="toggleable"> <p>Test</p> </div> </body> </html>