CSS CSS:打印机友好的标题可见性样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS CSS:打印机友好的标题可见性样式相关的知识,希望对你有一定的参考价值。

This solution applies to a header pair defined as follows:

<div id="header-normal">...</div><img id="header-printer-version" src="/location/to/your/print-header.jpg" width="0" height="0" />


You can specify your different media stylesheets as follows:

<link rel="stylesheet" href="screen-style.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="print-style.css" type="text/css" media="print" />



screen-style.css
==========

#header-normal {
  display: block;
  width: 800px;
  height: 220px;
  background: url(/location/to/your/normal-header.jpg) no-repeat;
}

#header-printer-version {
  float: left;
  width: 0px;
  height: 0px;
  visibility: hidden;
}

print-style.css
================

#header-normal {
  display: none;
}

#header-printer-version {
  float: left;
  width: 600px;
  height: 150px;
  visibility: visible;
}

以上是关于CSS CSS:打印机友好的标题可见性样式的主要内容,如果未能解决你的问题,请参考以下文章

CSS 过渡:不透明度和可见性过渡不适用于 Firefox(适用于 Chrome / Safari)

打印友好的 ASP.NET MVC 3 视图

CSS可见性动画不起作用

css基础 盒子模型border边框marginpaddingCSS分组和嵌套选择器Display(显示) 与 Visibility(可见性)Position 定位

CSS可见性转换在Safari中不起作用

在代码隐藏中更改中继器项目的样式?