Firefox 38.0.5 在地址栏中添加了“阅读器视图”:
但并非所有网站都有此图标,它仅在检测到可读内容页面时出现。那我该怎么做为我的网站启用此功能?
我尝试了媒体打印和打印视图的额外样式表,但这没有效果:
<html>
<head>
<style>
@media print { /* no effect: */
.no-print { display:none; }
}
</style>
<!-- no effect either:
<link rel="stylesheet" href="print.css" media="print"><!-- -->
</head><body>
<h1>Some Title</h1>
<img class="no-print" src="http://dummyimage.com/1024x100/000/ffffff&text=This+banner+should+vanish+in+print+view">
<br><br><br>This is the only text
</body></html>
我必须将哪些代码片段添加到我的网站源代码中,以便我网站的访问者可以看到这本书的图标?