页面当中遇到的兼容问题以及解决方案
1. 页面出现滚动条 ———— ::-webkit-scrollbar {display: none;}
2. 处理火狐浏览器form表单回显时出现蓝色或者黄色的背景色,三种方法如下:
这是由于chrome会默认给自动填充的input表单加上input:-webkit-autofill私有属性,然后对其赋予以下样式:
在form标签上直接关闭了表单的自动填充功能:autocomplete=”off”
input:-webkit-autofill { box-shadow: 0 0 0px 1000px #fff inset !important;}
input:-internal-autofill-previewed,input:-internal-autofill-selected {-webkit-text-fill-color: #807c7c;transition: background-color 5000s ease-out 0.5s;}
3. 文本显示两行做溢出处理:
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
4. 想要做一个div禁用,不可点击的效果,由于div没有disabled属性,禁用div可以使用增加样式的方法:
<div class="demo" style="pointer-events:none;"></div>
相关推荐
echoes 2020-08-20
sunshineboyleng 2020-01-08
huha 2020-10-16
TLROJE 2020-10-26
nercon 2020-08-01
zhanghaibing00 2020-06-28
Aveiox 2020-06-25
henryzhihua 2020-06-21
zhoutaifeng 2020-06-17
liangzhouqu 2020-06-16
TONIYH 2020-06-11
开心就好 2020-06-10
x青年欢乐多 2020-06-06
KyrieHe 2020-06-03
haokele 2020-05-29
niehanmin 2020-05-28
davidliu00 2020-05-26