当前位置: 代码迷 >> HTML/CSS >> 网站开发 html控件跟css篇
  详细解决方案

网站开发 html控件跟css篇

热度:87   发布时间:2012-09-07 10:38:15.0
网站开发 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 {
???? color :? #AAAAAA ;
}
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 ;
}
  相关解决方案