Changing the look of search box - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Box

Description

Changing the look of search box

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials