CSS从div中删除宽度

时间:2017-02-05 10:41:49

标签: html css

我有代码:

<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的情况下做到这一点?

1 个答案:

答案 0 :(得分:0)

尝试定义

.ipsType_richText div{ width: 100% !important; }. 

BTW div不是一个类,因此您不需要在选择器中添加带有div的点.