亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

CSS3提交意見輸入框樣式代碼

  發(fā)布時間:2014-10-30 16:43:29   作者:佚名   我要評論
這個提交意見輸入框,結構使用到了table,樣式用的css3,包含了多方面的知識,比較適合新手朋友們
做了個輸入框樣式,如圖:
 

CSS代碼如下:

復制代碼
代碼如下:

#button {
cursor:pointer;
width:30%;
margin:5px;
padding:8px;
border-radius:4px 4px 4px 4px;
font-size:14px;
font-weight:bold;
}
input{
transition:all 0.30s ease-in-out;
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
border:#364f86 1px solid;
border-radius:3px;
outline:none;
}
input:focus{
box-shadow:0 0 5px rgba(81, 203, 238, 1);
-webkit-box-shadow:0 0 5px rgba(81, 203, 238, 1);
-moz-box-shadow:0 0 5px rgba(81, 203, 238, 1);
}
textarea{
transition:all 0.30s ease-in-out;
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
border:#364f86 1px solid;
border-radius:3px;
outline:none;
}
textarea:focus{
box-shadow:0 0 5px rgba(81, 203, 238, 1);
-webkit-box-shadow:0 0 5px rgba(81, 203, 238, 1);
-moz-box-shadow:0 0 5px rgba(81, 203, 238, 1);
}

table代碼如下:

復制代碼
代碼如下:

<table>
<tr>
<td>用戶名</td>
<td><input name="username" type="text" id="username" placeholder="用戶名" style="height:25px"></input>*</td>
</tr>
<tr>
<td>聯(lián)系方式</td>
<td><input name="contact" type="text" id="contact" placeholder="電話或郵件地址" style="height:25px"></input>*</td>
</tr>
<tr>
<td>意見及建議</td>
<td><textarea name="comment" id="comment" rows="9" cols="112" ></textarea></td>
</tr>
<tr>
<td colspan="2"align="center"><input type="submit" id="button" value="提交" /></td>
</tr>
</table>

相關文章

最新評論