# Spotify embeds pixelated around corners showing white on black background

**URL:** https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927
**Category:** Support
**Created:** [January 20, 2026, 8:58pm UTC](https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927 "2026-01-20T20:58:28Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![hipp0](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hipp0/32/537433_2.png) [@hipp0](https://meta.discourse.org/u/hipp0)
#### Post date: [January 20, 2026, 8:58pm UTC](https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927/1 "2026-01-20T20:58:28Z")

</div>

![image](https://global.discourse-cdn.com/meta/original/4X/6/7/3/673a6096833c514632e4bd042c436b9a94982cbc.png)

I am wondering if this can get fixed the white pixels around the corners? Is this just a padding issue or something to do with how the embed works?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [January 20, 2026, 9:03pm UTC](https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927/2 "2026-01-20T21:03:12Z")

</div>

Looks fine on [https://try.discourse.org/](https://try.discourse.org/) ? Try safe-mode?

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/e/2/3e22000e07011dd6b38e11f71102c56539b0b50f.png)

---

<div class="post-metadata">

### Author: ![hipp0](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/hipp0/32/537433_2.png) [@hipp0](https://meta.discourse.org/u/hipp0)
#### Post date: [January 20, 2026, 9:05pm UTC](https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927/3 "2026-01-20T21:05:09Z")

</div>

still has a tiny bit of pixelation on the corners in [safe mode](https://meta.discourse.org/t/53504?silent=true)

 ![image](https://global.discourse-cdn.com/meta/original/4X/4/6/b/46b08476d820476f51faabb939fd1a6183ebb27c.png)

Definitely less noticeable so I am guessing something im doing with the CSS

```plaintext
iframe[src*="open.spotify.com/embed/track"] {
  max-width: 690px !important;
  width: 100% !important;
  margin: 0 0 20px 0 !important;
  display: block !important;
  box-sizing: border-box !important;
}

```

This works to make it similar to safe-mode:

```plaintext
iframe[src*="open.spotify.com/embed/track"] {
  max-width: 690px !important;
  width: 100% !important;
  margin: 0 0 20px 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  border-radius: 12px !important; /* smooth corners */
  overflow: hidden !important; /* clip pixelation */
  border: none !important;
  background: transparent !important;
}

```

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [February 19, 2026, 9:05pm UTC](https://meta.discourse.org/t/spotify-embeds-pixelated-around-corners-showing-white-on-black-background/393927/4 "2026-02-19T21:05:25Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
