html网页打印字体出现模糊的解决方法
在打印报告时 打印出来的文本是模糊的, 不清晰, 解决方案: 设置打印时字体 设置css 字体 @media print { *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; } a:not(.btn) { text-decoration: underline; } abbr[title]
继续阅读
修改chrome表单自动填充input时文本框背景和文字颜色
浏览器自动填充用户名密码后,文本框背景色为默认黄色 设置想要的文本框背景和字体颜色input:-webkit-autofill,input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px #08356d inset; -webkit-text-fill-color: #fff;}
继续阅读