Overriding properties in CSS

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

Then I have

<
6条回答
  •  半阙折子戏
    2021-02-07 14:49

    You could always use the !important flag to override:

    .myclass {
        width: 10px !important;
    }
    

提交回复
热议问题