Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
"input:not([type="submit"])"LESS を使用してどのように記述できますか? CSS 構文は IE では機能しないと思いますが、機能する LESS コマンドはありますか?
"input:not([type="submit"])"
私はそうは思わない。LESS は純粋な CSS 以上のことを行うことはできません - 書くのがより便利なだけです。not: is availableまでの回避策として、次のようなものを使用できます
input { /* set properties for all input types */ &[type="submit] { /* undo for type submit */ } }