我試圖給文本和密碼輸入相同的寬度。CSS:給文本和密碼輸入相同的寬度
所以我寫這篇文章:
input[type="text","password"]{
width: 138px;
}
但它不工作。
任何幫助?
問候
哈維
我試圖給文本和密碼輸入相同的寬度。CSS:給文本和密碼輸入相同的寬度
所以我寫這篇文章:
input[type="text","password"]{
width: 138px;
}
但它不工作。
任何幫助?
問候
哈維
如何:
input[type="text"], input[type="password"]
{
width: 138px;
}
,或者你使用類/ IDS:
input.text, input.password
{
width: 138px;
}
input[type="text"], input[type="password"]
怎麼樣?
input[type="text"],
input[type="password"]{
width: 138px;
}
請參閱W3C規範中的Attribute selectors。選擇器沒有任何支持多值的格式。要解決該問題,您可以按照faileN's answer。