需要div来部分显示背后的图像,这是否可能?尝试:
opacity:.5;
和
filter:alpha(opacity=50);
两者都产生了坚实的div。
非常感谢任何帮助。
答案 0 :(得分:1)
从评论中的一个奇妙的纯粹猜测中,我设法找到了一个有效的答案:
您尝试使用半透明吗?
.png
?
耶!
答案 1 :(得分:0)
对,你是,thirtydot!你得为cfdocument竖起大拇指,嗯?
我已经证实这适用于CF9。我想知道这个例子是否向后兼容 任何人都可以确认其他ColdFusion版本支持这个吗?
<cfdocument format="PDF" pagetype="letter"
margintop="0.5" marginbottom="0.5"
marginleft="0.5" marginright="0.5">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
body { background-image: url( "images/use_your_image.jpg" ); }
img { border: 3px solid #990000; }
</style>
</head>
<body>
Does transparent image appear above the background repeated image?
<img src="images/red_transparent_100x100.png">
<!--- Generated this at http://transparent-png-generator.com/ --->
</body>
</html>
</cfdocument>