我正在尝试打印包含外部CSS引用的网页并使用网络字体(我的意思是@ font-face属性),但在打印预览中,网络字体消失了.有没有人知道在不使用本地Web字体的解决方案?
我正在尝试仅使用一张图像在图像的不同分辨率(原始标准高)之间切换。这可以使用任何方式吗?这是我想要的一个例子,但它使用三个不同分辨率的三个图像,我只想使用一个图像。http://www.biomedcentral.com/1741-7007/8/59
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>resize image </title>
<style>
.high{width:500px; image-resolution:300dpi; }
</style>
</head>
<body>
<img class="high" src="original.jpg" border="0" /><!-- the orginal image width =100 px-->
</body>
</html>
Run Code Online (Sandbox Code Playgroud)