欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

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

CSS代碼如下:

復(fù)制代碼
代碼如下:

#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代碼如下:

復(fù)制代碼
代碼如下:

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

相關(guān)文章

最新評論