These are the printing styles. When a page is printed, color will be set to black and styles like background, text-shadow and box-shadow will be removed.
Using content attribute in CSS3, title and URL of <a> and <abbr> will be printed after its content.
<!-- Use print in browser to preview -->
<a href="http://www.amazeui.org">Amaze UI</a>
<abbr title="http://www.amazeui.org">Amaze UI</abbr>am-print-hide Visible in browser, but Invisible to printer.am-print-block、am-print-inline-block、am-print-inline Invisible in browser, but visible to printer, and are printed as block,inline-block,inline styles respectively.<!-- 在打印预览中查看效果 -->
<div class="am-print-hide"><button type="button" class="am-btn am-btn-primary am-btn-block">Invisible in browser, but visible to printer.</button></div>
<div class="am-print-block"><button type="button" class="am-btn am-btn-primary am-btn-block">Invisible in browser, but visible to printer.</button></div>