How to override CSS Box Sizing for just one area on page?

前端 未结 1 1454
星月不相逢
星月不相逢 2021-02-13 06:52

I have the following CSS inside my Twitter Bootstrap file:

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-si         


        
1条回答
  •  抹茶落季
    2021-02-13 07:24

    Nevermind just got it:

    .tinymce-editor *,
    .tinymce-editor *:before,
    .tinymce-editor *:after {
        -webkit-box-sizing: content-box !important;
        -moz-box-sizing: content-box !important;
        box-sizing: content-box !important;
    }
    

    0 讨论(0)
提交回复
热议问题