HTML CSS examples for CSS Layout:Box
Changing the look of search box
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .ClassNameOfYourSearch {<!--from w w w.ja v a2 s .c om--> -webkit-border-radius:6px; -moz-border-radius:6px; border-radius:6px; background:Chartreuse; font-size:21px; } </style> </head> <body> <input class="ClassNameOfYourSearch"> </body> </html>