2
我將圖標圖標的顏色更改爲藍色。要更改顏色,我使用了下面的代碼。圖形圖標的顏色在打印預覽中未更改
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<style>
.colorful {
color: blue !important;
}
@media print {
.colorful {
color: blue !important;
}
}
</style>
</head>
<body>
<span class="glyphicon glyphicon-comment colorful" style="padding-left:100px;padding-top:100px"></span>
</body>
</html>
我使用Chrome瀏覽器的圖標顯示爲黑色。我需要在打印預覽中使圖標以藍色顯示
http://stackoverflow.com/questions/7615681/grey-font-color-printing –
它可以幫助你 –
謝謝您的幫助。但是文字顏色正在變化,只有痣圖標顏色不會在印刷中發生變化。 – Vaishali