Why Are My Background Images Not Printing in ASP.NET Sprites?

Barbara Streisand
Release: 2024-10-25 12:04:02
Original
588 people have browsed it

Why Are My Background Images Not Printing in ASP.NET Sprites?

Printing CSS Background Images

In ASP.NET Sprites, it's possible to encounter difficulties with printing background images. Despite the HTML displaying the images, they may vanish when printing due to browser limitations.

Code Generated:

<code class="html"><a href="/" id="siteLogo"><img class="getmecooking-logo-png" src="data:image/gif;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" /></a></code>
Copy after login

Print Stylesheet Modifications:

Override the visibility property of the siteLogo element in your print.css like this:

<code class="css">#siteLogo {
    visibility: visible !important;
}</code>
Copy after login

Browser-Specific Considerations:

For Chrome and Safari, add the following to your CSS:

<code class="css">@media print {
    * {
        -webkit-print-color-adjust: exact;
    }
}</code>
Copy after login

Unfortunately, in other browsers like IE 9, 10, and 11, users must manually select the option to print background images. They can do this by clicking the cog icon in the print dialog, navigating to Page Setup, and enabling that option.

The above is the detailed content of Why Are My Background Images Not Printing in ASP.NET Sprites?. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!