摘要: 本文主要用于处理单页面项目内容未曾铺满背景色填充不足<style> .divBackgroundColor{ background-color: red; position: absolute;//使用绝对定位将页面铺满 top:0; left: 0; right: 0; bottom: 0; z- 阅读全文
posted @ 2017-12-13 22:40 michaelxlm 阅读(2742) 评论(0) 推荐(0)
摘要: 编写常用的遮罩弹层时,避免使用 opacity: 0.7; 应该在背景层中写入 background:rgba(0,0,0,0.7); 即:背景色为黑色,透明度为0.7 在插入背景图片时: 阅读全文
posted @ 2017-11-23 13:58 michaelxlm 阅读(102) 评论(0) 推荐(0)
摘要: /*隐藏input框上下箭头*/input::-webkit-inner-spin-button { -webkit-appearance: none;}input::-webkit-outer-spin-button { -webkit-appearance: none;} /*将checkbox 阅读全文
posted @ 2017-11-19 19:09 michaelxlm 阅读(111) 评论(0) 推荐(0)