我为一个网页构建了css,看起来很不错。这个CSS适用于Chrome,但由于某些原因,没有一种样式适用于互联网爆炸11。
是否有一些技巧可以让这些打印样式生效?我只能发现互联网爆炸将忽略过滤器css。
我的css就是这个
@media print {
.noPrint
{
display: none;
}
.noButtonSpacer {
margin: .25em;
}
.tab-content > .tab-pane {
display: block !important;
opacity: 1 !important;
visibility: visible !important;
}
button,
.nav-item,
.newCommentArea {
display: none !important;
}
select,
input,
.form-control {
//border: none;
background-color: #fff;
width: 100% !important;
}
label,
span,
p,
input,
body,
html,
.col-md-2,
.row,
.contaniner,
.form-inline label {
text-align: left !important;
justify-content: left !important;
}
.container .col-md-2,
.container .col-md-3,
.container .col-md-4,
.container .col-md-5,
.container .col-md-6 {
width: 50% !important;
}
.heading {
margin-top: .5em;
border-bottom: 1px solid #000;
width: 100%;
}
th,
td,
table {
border: none !important;
}
}
我的链接看起来像这样
<link href="css/print.css" rel="stylesheet" type="text/css" media="print">