2 回答
TA贡献1785条经验 获得超4个赞
您也可以使用 media='screen,print' 在打印和屏幕上应用样式表
<link ../bootstrap.min.css' rel='stylesheet' media='screen,print'>
或者
<link ../bootstrap.min.css' rel='stylesheet' media='all'>
TA贡献1864条经验 获得超2个赞
当我们想在打印页面时应用一些样式时,我们需要使用@media print 来应用样式。然后只有样式将适用于 windows 打印功能。
样式.css
@media print
{
.center {
float: left;
text-align: center;
}
.center h3 {
color: #000;
font-weight: 600;
}
.left {
font-size: 14px;
float: left;
width: 30%;
color: #000;
}
.right {
font-size: 14px;
float: right;
width: 70%;
color: #000;
}
}
然后将要打印页面的css文件链接到样式。
<link rel="stylesheet" type="text/css" href="Style.css">
在按钮单击时调用打印函数
<button onclick="printPage()" class="center">Print</button>
<script>
function printPage()
{
print();
}
</script>
- 2 回答
- 0 关注
- 210 浏览
添加回答
举报