我有一個從CSS精靈這樣加載兩個圖像的網頁:打印圖像從css sprite加載?
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div class="arrow low"></div>
<div class="arrow high"></div>
</body>
</html>
和CSS(stylesheet.css中)看起來是這樣的:
.arrow
{
height: 239px;
width: 260px;
background: url('logotypearrows.png') no-repeat;
}
.arrow.high
{
background-position: 10px 0px;
}
.arrow.low
{
background-position: -1003px 0px;
}
的網頁看起來很完美,但我無法打印它。我看不到動態加載的箭頭。任何人都知道如何解決這個問題?我希望能夠打印出箭頭,並且我想從css精靈中加載它們。