我不知道我做错了什么,对我来说代码似乎是正确的,但我想它不是,否则它会起作用。实际的精灵按钮没有出现在浏览器中,我可以点击不可见的按钮,但我看不到它,我不知道如何修复它。需要帮助。
这是CSS
@charset "UTF-8";
/* CSS Document */
a.button
{
height: 48px;
background-image: url("images/Home.png");
text-indent: -9999px;
display: inline-block;
}
#home
{
width: 186px;
background-position: 0px 0px;
}
#home:hover
{
background-position: 0px -40px;
}
#home:active
{
background-position: 0px -80px;
}
这是HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link href="css/main.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<a href="#" class="button" id="home">Home</a>
</body>
</html>