---
title: "CSS @media print issues with background-color; - Stack Overflow"
description: "!https://stackoverflow.com/questions/3893986/css-media-print-issues-with-background-color#answer-14784655"
date: 2023-11-30
published: true
tags:
  - css
  - dev
  - thought
  - webdev
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://stackoverflow.com/questions/3893986/css-media-print-issues-with-background-color#answer-14784655" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-content">
      <div class="embed-card-title">External Link</div>
      <div class="embed-card-meta">stackoverflow.com</div>
    </div>
  </a>
</div>


Get those print colors exact

``` css
body{
  -webkit-print-color-adjust:exact !important;
  print-color-adjust:exact !important;
}
```
