How do I make a class take precedence over an id?

后端 未结 5 1133
暖寄归人
暖寄归人 2020-12-25 15:17

But this doesn\'t work! The blah\'s width till cancels out class \"wider\"\'s with.

5条回答
  •  温柔的废话
    2020-12-25 16:14

    You can decorate attributes with !important to increase their...importance.

    .wider
    {
        width:9000px !important;
    }
    

提交回复
热议问题