取消设置显示:块

发布于 2024-11-01 19:01:44 字数 70 浏览 2 评论 0原文

我想设置块 dsiplay:block 站点中每个位置的输入(除了选择选项输入)。如何取消设置 display:block ?

I wanna set block dsiplay:block every where in the site for input expect in select options input. How can i unset display:block ?

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

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

发布评论

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

评论(4

冷情 2024-11-08 19:01:44

您必须用类似这样的其他属性覆盖 css 属性

select {
    display: inline;
}

You must overwrite the css property with an other like this

select {
    display: inline;
}
萌面超妹 2024-11-08 19:01:44
display: inline;

阅读docs,它会显示除“block”之外的所有值。

display: inline;

Read the docs, it will show you all the values other than 'block'.

西瑶 2024-11-08 19:01:44

您可以使用以下命令来删除块

显示:inline

Simples...

You can use the following this will remove the block

display:inline

Simples....

榆西 2024-11-08 19:01:44

您正在寻找未设置。我不确定它的支持程度如何,但它在 Firefox 和 Chrome< /a>.

.everything { display: block; }
.my-input   { display: unset; }

You're looking for unset. I'm not sure how well it's supported, but it works in both Firefox and Chrome.

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