所以我有這個圖像,3 00px by 100px
和它的3個圖標在一個我想使用它使用HTML和CSS,但我無法訪問該圖像在我的桌面上的文件夾和我的文件html路徑是C:\Users\User\Desktop\index1.html
。這裏是HTML和CSS的任何幫助,我是新來的,所以我有點失落。在CSS訪問精靈的URL的文件夾路徑img
HTML文件
<!DOCTYPE html>
<html>
<head>
<head>
<link rel= "stylesheet" href="primary2.css">
</head>
<body>
<ul class="button">
<li class="yellow"></li>
<li class="purple"></li>
<li class= "red"></li>
</ul>
</body>
</html>
primary.css文件
.button{
list-style: none;
margin:0;
padding:0;
}
.button li {
width:100px;
height:100px;
display:inline-block;
background-color: #000;
margin-right:10px;
}
.button li.info{
background : url(../sprite.JPEG) no repeat;
}
您的CSS文件和圖像文件在桌面上可用。 –