标签: html css
当我使用IE Developer工具检查html时,我发现按钮有一个内联样式:
我不希望此输入元素具有任何width属性。如何使用空width禁用或覆盖此内容?
width
答案 0 :(得分:1)
如果要覆盖内联样式,则需要在样式表中使用!important
!important
例如。
width: auto !important;
参考 - CSS Specificity
答案 1 :(得分:1)
您可以使用javascript禁用任何给定元素的内联样式:
javascript
style
<强>使用Javascript:强>
var button = document.getElementById('myButton'); button.removeAttribute('style');