Google 网站上的广告溢出到米色背景

Google Ad on site overflowing to beige background

我的网站上有一个响应式 google 广告,有时(取决于广告)广告会停止然后溢出到米色背景(见图)。

我知道我可以将它放在 div 标记中并限制宽度以减少发生这种情况的可能性,因为现在允许它跨越我网站的 100% 宽度。但我希望有一种方法可以将背景颜色更改为黑色或任何最干净的方法。有小费吗?建议?谢谢!

您似乎在强制它使用 100% 的宽度。你试过了吗(在你的 CSS 文件中):

max-width: 100%;

而不是

width: 100%;

如果还是不行,那就试试this solution:

ins.adsbygoogle {
  background-color: transparent !important;
}