div无内容不设高度让背景图片全部显示
// 给外层div一个图片宽高比的padding-bottom即可,若有更好的方法麻烦留言告知,感谢!
<div class='bg'></div>
<style>
.bg {
background: url(xxx.png) 0 0 /100% 100%;
padding-bottom: 31.25%;
}
</style>
生成随机的评论总数
Math.floor((Math.random()+1)*Math.pow(5,4));
页面内锚点跳转不被header遮挡内容
#see :target {
padding-top: 50px;
}