网站开发 html控件和css篇
1.文本框;
<input id="words" type="text" placeholder="Find Open Source Software" name="q">
?
样式:
#site-header input
{
????
margin
:?
0
;
????
width
:?
150px
;
}
input:-moz-placeholder
{
}
input, textarea, select
{
????
border
:?
1px solid #AAAAAA
;
????
border-radius
:?
4px 4px 4px 4px
;
????
box-shadow
:?
0 1px 3px rgba(0, 0, 0, 0.4) inset, 0 1px 0 rgba(255, 255, 255, 0.9)
;
????
display
:?
inline-block
;
????
margin-bottom
:?
5px
;
????
margin-left
:?
2px
;
????
padding
:?
5px
;
}