Overriding properties in CSS

后端 未结 6 1725
忘了有多久
忘了有多久 2021-02-07 14:06
#iddiv span {
    display: inline-block;
    width: 190px;
}
.myclass {
    width:10px;
}

Then I have

<
6条回答
  •  有刺的猬
    2021-02-07 14:26

    Remember to use the keyword, !important, which functions to overwrite parent rules.

    Also you can define your "myclass" in the following way:

    #iddiv span.myclass {
        width:10px;
    }
    

提交回复
热议问题