当我在网页中嵌入订阅按钮时,即使我使用深色主题选项,也会出现一些奇怪的白角。有什么想法如何解决这个问题吗? 谢谢。
一种选择可能是:
示例(记住这是一个示例,您的风格可能会有所不同):
/* "divContainer" is the name of the class that contains your image. */
.divContainer {
background: #4a4e51; /* Add here the same color as your webpage. */
}
我在 Stack Overflow 上测试了这段代码,因为我还观察到我的个人资料图片上有白色角并且我正在使用深色主题。
我在这里测试使用的代码修复如下:
.s-avatar.s-avatar__24 {
width: var(--su-static24);
height: var(--su-static24);
background: #4a4e51; /* Set the same background color of Stack Overflow. */
}
我的 mui React 应用程序将 color-scheme:dark 应用于 html 元素。 在使用 g-ytsubscribe 类包裹 div 的 div 上添加 color-scheme:normal 解决了该问题。