作者在 2017-04-24 10:43:15 发布以下内容
一、页面js,style复用,命名规范
二、注意标签缩进
三、将页面中的图片统一进行处理,合并,再使用style引入,获取指定图片位置中的内容
<html>
<head>
<style>
.TCLogo {
width:146px;
height:36px;
background-image:url(原图.png);
background-attachment:fixed;
background-position:-100px -87px;
background-repeat:no-repeat;
}
</style>
</head>
<body>
<div class='TCLogo'>
</div>
</body>
</html>