Can I apply a CSS style to an element name?

后端 未结 10 1356
借酒劲吻你
借酒劲吻你 2020-12-07 14:39

I\'m currently working on a project where I have no control over the HTML that I am applying CSS styles to. And the HTML is not very well labelled, in the sense that there a

10条回答
  •  粉色の甜心
    2020-12-07 14:54

    input[type=text] {
      width: 150px;
      length: 150px;
    }
    
    input[name=myname] {
      width: 100px;
    length: 150px;
    }
    
    

提交回复
热议问题