css
wangyanxin928
这个作者很懒,什么都没留下…
展开
-
设置H5打开文章内的二维码不能识别,只可选中下载bug
.img_box img{width: 100%;height: auto;display: block;-webkit-user-select: none;/*禁用手机浏览器的用户选择功能 */-moz-user-select: none;-webkit-touch-callout: none;}原创 2020-03-06 10:59:46 · 278 阅读 · 0 评论 -
linear-gradient()背景颜色渐变
css语法background: linear-gradient(direction,color-stop1,color-stop2,...);direction:用角度值指定渐变的方向(或角度);color-stop1,color-stop2,...:用于指定渐变的起止颜色ps:至少需要两种颜色1 background: -webkit-linear-gradient(red,ye...原创 2019-12-06 16:05:30 · 2960 阅读 · 0 评论 -
CSS中cursor属性给标签加上小手形状
我们发现a标签在网页中有一个值得注意的地方,即鼠标移到a标签上光标会变成一只小手的图标,移出a标签后又恢复为默认箭头。如今,JS在网页中的功能越来越强大,有时候我们需要在页面中添加一些可点击的标签实现一些功能。如以下代码:123metacharset="utf-8"/>title>给点击标签加上小手转载 2016-06-29 16:55:20 · 12896 阅读 · 1 评论 -
IE隐藏 file 上传样式
.file{ width: 82px; height: 32px; background: #333; margin: 0 auto;position: absolute; top: 126px; left: 0px; opacity: 0; filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; z-inde原创 2016-07-05 19:10:46 · 374 阅读 · 0 评论 -
IE中table的边框问题
出现的问题是因为在td、tr、table、tbody 的父元素增加了overflow:hidden这个属性所以去掉父元素的css 就会正常显示。原创 2016-07-06 15:15:55 · 1275 阅读 · 0 评论 -
如果是安卓手机,调起软键盘是滑动body
$("#jobInfo").delegate('input[type="text"],textarea',"focus",function () {var u = navigator.userAgent, app = navigator.appVersion;var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') ...原创 2019-04-12 11:06:33 · 359 阅读 · 0 评论