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

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" ></input>*</td>
                </tr>
                              
                <tr>
                    <td>联系方式</td>
                    <td><input name="contact" type="text" ></input>*</td>
                </tr>

                <tr>
                    <td>意见及建议</td>
                    <td><textarea name="comment"  ></textarea></td>
                </tr>               
			    
			    <tr>
				<td colspan="2"align="center"><input type="submit"  /></td>
			    </tr>
</table>


相关文章:

  • 2021-11-08
  • 2021-12-15
  • 2022-12-23
  • 2021-11-30
  • 2021-11-29
猜你喜欢
  • 2021-06-08
  • 2022-01-01
  • 2022-12-23
  • 2021-12-02
  • 2021-12-04
  • 2021-07-03
相关资源
相似解决方案