How to make TinyMCE Responsive

后端 未结 6 1911
抹茶落季
抹茶落季 2020-12-28 17:18

I am making a Responsive site using the foundation framework and TinyMCE breaks the format when the page is scaled down(it\'s not responsive). How do I make TinyMCE responsi

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-28 17:49

    There is a way to get the toolbars to wrap on smaller screens.

    /* make the toolbar wrap */
    .mceToolbar td {
        display:table-row;
        float: left;
    }
    .mceToolbar td:nth-of-type(11){
        clear: left;
    }
    

    I made a fork of the fiddle that Johannes posted that includes the above rules:

    http://jsfiddle.net/joshfeck/gMVSE/

提交回复
热议问题