adding css class to multiple elements

后端 未结 4 1929
遇见更好的自我
遇见更好的自我 2020-12-28 13:20

I have created a CSS class called \'button\' and applied it to all of my INPUT tags by simply using :

.button input
{
//css stuff here
}

4条回答
  •  醉梦人生
    2020-12-28 13:43

    try this:

    .button input, .button a {
    //css here
    }
    

    That will apply the style to all a tags nested inside of

提交回复
热议问题