
Css3
ZoeLinJF
这个作者很懒,什么都没留下…
展开
-
谷歌浏览器 input记住账号列表
autocomplete=“new-password”原创 2019-12-20 11:27:51 · 385 阅读 · 0 评论 -
谷歌浏览器自动记住后输入框样式问题修改
下面是问题图片法1input:-webkit-autofill { -webkit-text-fill-color: #606266 !important; -webkit-box-shadow: 0 0 0px 1000px #1C1E27 inset !important; transition: background-color 500000s...原创 2019-07-12 19:01:10 · 1846 阅读 · 0 评论 -
rem PC端和手机端适配 问题
当手机端和pc端需要做适配时,建议手机端用rem为单位。设置px和rem的比例。因为rem是相对于页面根元素元素大小来设置的 let iWidth = document.documentElement.clientWidth; document.getElementsByTagName('html')[0].style.fontSize = 100 * iWidth / 750 + 'p...原创 2019-07-24 17:43:19 · 1594 阅读 · 0 评论 -
css制页面渲染前的loading
<body> <div id="spinner"></div> </body><script> //在页面未加载完毕之前显示的loading Html自定义内容 var _LoadingHtml = `<div class="rect1"></div> ...原创 2019-08-23 17:11:40 · 439 阅读 · 0 评论