css Bootstrap - size panel with wysiwyg editor

pwuypxnk  于 4个月前  发布在  Bootstrap
关注(0)|答案(1)|浏览(82)

我在panel里面有一个所见即所得的编辑器。我需要改变这个编辑器的高度,比如200px。
我该如何实现这一点?

<div class="row">
    <div class="col-xs-12 col-md-12 col-lg-8">
        <panel heading="Product Description" panel-class="panel-inverse">
             <wysiwyg-edit id="wysiwygProductDescription" content="vm.productDescription" config="vm.productConfig"></wysiwyg-edit>
        </panel>
    </div>
 </div>

字符串
我试着用内联样式设置列的高度,但是所见即所得编辑器就是不“适合”在里面:

<div class="col-xs-12 col-md-12 col-lg-8" style="height: 200px;">


我还尝试在列或行级别使用-hmh,但不起作用。
这是我使用的所见即所得编辑器:https://github.com/psergus/ngWYSIWYG

flvtvl50

flvtvl501#

wysiwyg-edit .tinyeditor .sizer { 
   min-height: unset; 
   height: 200px; 
}

字符串

相关问题