如何删除的背景

发布于 2024-12-09 03:09:52 字数 137 浏览 0 评论 0原文

我有一个 。在里面,我有一个

I am having a <tooltip>. Inside that, I am having a <button>. But this shows a background around button. How to remove it? I want just the button to appear as if it is just a standalone button floating.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时常饿 2024-12-16 03:09:52

元素没有预定义背景,至少在默认 Windows 主题中没有。相反,它似乎使用操作系统定义的默认背景。您可以通过更改 -moz-appearance CSS 属性来禁用此行为。设置背景也不会造成损害,其他主题可能会定义它:

-moz-appearance: none;
background: transparent;

The <tooltip> element doesn't have a predefined background, at least not in the default Windows theme. Instead it seems to use the default background defined by the operating system. You can disable this behavior by changing -moz-appearance CSS property. Setting background as well won't harm, other themes might defined it:

-moz-appearance: none;
background: transparent;
宫墨修音 2024-12-16 03:09:52

使用 CSS 使工具提示的背景透明。

Use CSS to make tooltip's background transparent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文