手机
当前位置:查字典教程网 >网页设计 > Div+Css教程 >CSS3提交意见输入框样式代码
CSS3提交意见输入框样式代码
摘要:做了个输入框样式,如图:CSS代码如下:#button{cursor:pointer;width:30%;margin:5px;paddin...

做了个输入框样式,如图:

CSS3提交意见输入框样式代码1

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="用户名"></input>*</td>

</tr>

<tr>

<td>联系方式</td>

<td><input name="contact" type="text" id="contact" placeholder="电话或邮件地址"></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>

【CSS3提交意见输入框样式代码】相关文章:

创建多个边框box阴影css代码

CSS知识总结

三种CSS图表代码

CSS掌握定位的盒子模式

CSS3 实用技巧:实现黑白图像效果示例代码

CSS各种文字对齐方式代码

两个DEDECMS分页样式css代码

DIV CSS隐藏内容样式方法大全

CSS写的简单表格示例

CSS控制让每行显示4个图片的样式

精品推荐
分类导航