如何为要被打印的内容设置CSS样式属性_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:30:58
Original
1169 people have browsed it

如何为要被打印的内容设置CSS样式属性:
有时候我们要打印的内容也是需要美观度的,并不希望太原汁原味了,所以要对其进行一下样式设置,本章节就简单介绍一下,如何利用CSS设置要被打印内容的样式,方式有多种,下面一一做一下简单介绍。
一.使用link引入外部样式表:

 

<link rel="stylesheet" href="css/style.css" media="screen" />
Copy after login

以上代码的CSS样式用于屏幕显示效果,对于打印无效。关键在于media属性值。

<link rel="stylesheet" href="css/style.css" media="print" />
Copy after login

以上代码的样式代码可以用于打印内容。
二.import方式引入样式表:

<style type="text/css">@import url("css/printstylesheet.css") print;</style>
Copy after login

以上代码引入的样式可以用于打印样式。
三.屏幕显示和打印在同一个文件中:

@media print{h1{color:black;}h2{color: gray;}}div{color:red}
Copy after login

 

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=11495

更多内容可以参阅:http://www.softwhy.com/divcss/

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template