CSS去除表单的默认样式; 去除文本框小蓝框; 去除文本框小红框; 去除多行文本框拖拽; /*去除*/ input{ border-radius: 0; } /*去除Chrome等浏览器文本框默认发光边框*/ input:focus, textarea:focus { outline: none; ...
分类:
Web程序 时间:
2020-12-01 12:00:36
阅读次数:
10
1.ios按钮变灰色,给按钮加样式: -webkit-appearance: none; 2.有圆角 button{ border-radius: 0; } 3.去除Chrome等浏览器文本框默认发光边框 input:focus, textarea:focus { outline: none;} 4 ...
分类:
移动开发 时间:
2018-01-29 16:09:05
阅读次数:
160
摘自:http://blog.sina.com.cn/s/blog_7d796c0d0102uyd2.html 可惜不能直接转到博客园。 input[type="button"], input[type="submit"], input[type="reset"] { -webkit-appeara ...
分类:
移动开发 时间:
2017-08-14 16:29:28
阅读次数:
246
.active{ margin: 0.37rem 0;//边框粗细及颜色 border: 2px solid #00ffff;//圆角矩形 border-radius: 5px;//位置及晕染大小 box-shadow: 0 0 15px #00ffff; //兼容性 -webkit-box-sha ...
分类:
其他好文 时间:
2016-08-24 11:09:58
阅读次数:
111