摘要: 添加网页标题图 使用shortcut icon给网页加标题图 两种写法 语句一:<link rel="shortcut icon" href="图片地址" /> 语句二:<link rel="icon" href="图片地址" type="image/gif" /> 备注:语句一 Shortcut 阅读全文
posted @ 2020-03-26 09:06 大头卒 阅读(47) 评论(0) 推荐(0)
摘要: 解决静态页面晃动问题 很多原因是因为css直接在里面写的原因没有用link引用,也有其他解决办法 html, body {height:100%;overflow:auto;margin: 0;} html{overflow-y:scroll;} 直接添加到里面即可 原文:https://blog. 阅读全文
posted @ 2020-03-26 09:03 大头卒 阅读(1215) 评论(0) 推荐(0)