有没有办法通过 !important 覆盖添加内联样式?
style={
height: 20+'!important'
};
<div style={style}></div>
这不是我希望的。
答案
20+'!important'
是'20!important'
。
当您只给出一个数字时,React为您添加了" PX";但是您使用的是字符串,因此您必须指定单元。我也很确定,"!
style={{ height: '20px !important' }};
有没有办法通过 !important 覆盖添加内联样式?
style={
height: 20+'!important'
};
<div style={style}></div>
这不是我希望的。
20+'!important'
是'20!important'
。
当您只给出一个数字时,React为您添加了" PX";但是您使用的是字符串,因此您必须指定单元。我也很确定,"!
style={{ height: '20px !important' }};