HTML CSS examples for CSS Property:box-shadow
CSS Box-Shadow With Textarea
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> textarea {<!-- w w w.j av a 2 s .com--> margin:21px; box-shadow:0 0 0 6px red; -webkit-appearance:none; } </style> </head> <body> <textarea required></textarea> </body> </html>