gpt4 book ai didi

html - 使类型为 'text' 的表单输入具有灰色背景

转载 作者:太空宇宙 更新时间:2023-11-03 23:03:00 24 4
gpt4 key购买 nike

这是解决这个简单请求的正确方法吗?

输入 [type="text"]{ 背景:灰色;}

当我刷新我的 html 时,我定位的输入框没有改变。

这是 html 标记:

<input type="text" name="name" />

我做错了什么?

最佳答案

您只需要删除 input 之后的空格,否则样式将应用于包含在 input 中的 [type="text"]/p>

input[type="text"] {
background: gray;
}

一些额外的信息

<a href="#" class="button">Text</a>

上面的 anchor 元素有一个 .button 类,因此要使文本变成红色,您需要以下内容:

a.button {
//No space
color: red;
}

如果您现在在 a.button 选择器之间添加一个空格,这将不再起作用,因为您实际上是在说“查看 a .button 的元素。

a .button {
//Space
color: red;
}

但是下面的代码会起作用,因为 .button 现在嵌套在 a 元素中。

<a href="#"><span class="button">Text</span></a>

我还附加了 zfrisch 的 jsfiddle | : https://jsfiddle.net/0kcvb3d6/

关于html - 使类型为 'text' 的表单输入具有灰色背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35777195/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com