我在我的HTML頁面中使用了一個容器,在這裏我使用了背景圖片。 我想在背景圖片上放一些文字,然後打印出來。 但是當我使用:背景圖片沒有打印
<A HREF="javascript:window.print()">Print</A>
我不明白我的背景圖片都沒有。 這是我的代碼:
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body >
<div id="headerbg">
<h1><p>DATA</h1>
</div>
<div id="container">
<p id="address">
adress is XYZ
</p>
<p id="ward">
Ward is 7
</p>
</div>
<A HREF="javascript:window.print()">Print</A>
<div id="footer">
</div>
</body>
</html>
我使用的CSS是:
#headerbg {
background:#E8E8E8;
text-align:center;
height: 80px;
}
#headerbg p{
margin: 0;
position: absolute;
top: 5%;
left: 40%;
margin-right: -50%;
}
#container
{ background-image: url("notice.jpg");
height:680px;
width:1000px;
background-repeat: no-repeat;
margin-top:10px;
margin-left:390px;
position:relative;
}
#address
{
z-index:100;
position:absolute;
color:black;
font-size:19px;
left:10px;
top:225px;
}
我怎樣才能讓我的背景圖片打印?請幫幫我!
嘗試使用內嵌樣式#container?沒有使用風格類? – 2015-02-12 09:11:04
如果您使用的是Windows 7,當出現打印對話框時,在選項「顏色」下面會出現一個名爲「更多設置」的選項。點擊它,你會看到一個名爲'Background Graphics'的複選框。勾選它,你會看到背景圖片。 – 2015-02-12 09:24:22
只是簡單的!非常感謝你:))))@PrerakSola – 2015-02-12 09:28:17