CSS:为文本和密码输入提供相同的宽度
我试图为文本和密码输入提供相同的宽度。
所以我这样写:
input[type="text","password"]{
width: 138px;
}
但这不起作用。
有什么帮助吗?
问候
哈维
i'm trying to give the same width to the text and password inputs.
So i write this:
input[type="text","password"]{
width: 138px;
}
But it doesn't work.
Any help?
Regards
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
或者你使用类/ID:
How about:
or you use classes/ids:
怎么样?
How about?