gpt4 book ai didi

CSS:为文本和密码输入提供相同的宽度

转载 作者:技术小花猫 更新时间:2023-10-29 11:25:25 24 4
gpt4 key购买 nike

我正在尝试为文本和密码输入提供相同的宽度。

所以我这样写:

input[type="text","password"]{

width: 138px;

}

但它不起作用。

有什么帮助吗?

问候

贾维

最佳答案

怎么样:

input[type="text"], input[type="password"]
{
width: 138px;
}

或者你使用类/ids:

input.text, input.password
{
width: 138px;
}

关于CSS:为文本和密码输入提供相同的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3099393/

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