+ 3
How to call 'name = "text" ' in CSS?
if you have: <input name="txtInput" type="text"/> how do you call that input in CSS without using: tag -> [tag name]{ }, id -> #[id]{ } or class -> .[class]{ }
2 Antworten
+ 1
just call input[type="text"]{ background-color:red}
+ 2
thanks!