我有代码:
<div class="ipsType_richText">
<div class="ipsContained">
<div class="ipsType_richText">
<div style="box-sizing: border-box; table-layout: fixed; width: 723px; color: rgb(101, 101, 101); font-size: 14px; background-color: rgb(255, 255, 255);">
my html code...
</div>
</div>
</div>
</div>
如何从div样式中删除width: 723px
?我不能将该类添加到该div,因为生成的div看起来像ckeditor。我试过像.ipsType_richText .div{ width: 100%; }
这样的smth但它不起作用。是否有可能在不触及js的情况下做到这一点?
答案 0 :(得分:0)
尝试定义
.ipsType_richText div{ width: 100% !important; }.
BTW div
不是一个类,因此您不需要在选择器中添加带有div的点.
。