css
甘越
这个作者很懒,什么都没留下…
展开
-
页面背景加入图片
body{ background: #D7E0F0 url('web/image/night.png') no-repeat fixed center; }原创 2019-06-21 17:30:06 · 296 阅读 · 0 评论 -
移动端网页字体过多时,字体被自动放大问题
手机网页开发中遇到当出现一段较长文字时,自动被莫名放大了,经查验代码无误,后来在网上查询到其原因://"主要问题在于 Font Boosting 特性"//"这个特性被称做「Text Autosizer」,又称「Font Boosting」、「Font Inflation」"//是 Webkit 给移动端浏览器提供的一个特性"//"当我们在手机上浏览网页时,很可能因为原始页面宽度较大,在手...原创 2019-06-23 10:16:33 · 1427 阅读 · 0 评论 -
css设置透明(各浏览器兼容)
.demo{ filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; }原创 2022-05-07 14:30:35 · 541 阅读 · 0 评论