Мне нужно, чтобы мои панель поиска и кнопка были слегка прозрачными ... вроде как твиттеры, когда мышь не зависает над ним. Как мне сделать это в html / css?
CSS:
.search1{
position: absolute;
font-family:"Arial Unicode MS";
background-color:#CCCCCC;
border-style:none
}
.search2{
position: absolute;
border-style:none;
font-family:"Arial Unicode MS";
color:black;
background-color:#CCCCCC;
font-size:xx-large
}
input:hover{
background-color:white;
border-color:white;
}
HTML:
<form class="search2" method="get" action="default.html" />
<input class="search2" type="text" name="serach_bar" size="31" maxlength="255"
value="" style="left: 396px; top: 149px; width: 300px; height: 50px;" />
<input class="search1" type="submit" name="submition" value="Search" style=" padding- bottom:20px; left: 710px; top: 157px; height: 17px" />
<input class="search2" type="hidden" name="sitesearch" value="default.html" />
Заранее спасибо, ребята!