Why does my background image look blurry when I use background-size?
Scaling an image up with background-size can make it blurry because the browser stretches the pixels. Use a higher resolution image to keep it sharp.
💡 Scaling up enlarges pixels, causing blur; scaling down keeps sharpness.
Why does background-size: cover crop part of my image?
Cover makes the image fill the entire box, so if the box and image have different shapes, some edges get cut off to avoid empty space.
💡 Cover fills box fully but may crop edges to keep aspect ratio.
Why doesn't background-size work when I use background shorthand?
If you set background shorthand without specifying background-size separately or with slash syntax, background-size may reset or not apply.
💡 Use separate background-size property or include it after slash in shorthand.