如何在Ckeditor中设置宽度

时间:2017-05-17 17:07:27

标签: jquery ckeditor

如何设置下面的ckeditor的宽度 enter image description here

请帮忙!

1 个答案:

答案 0 :(得分:0)

是的!但是需要代码来实际检查特定区域,或者您可以自己尝试,请从我想到的某个地方的继承代码中检查float:right。您可以检查特定区域并添加float:none !important

这个类正在处理编辑器工具栏样式,当你更改浮动属性时,它会创建与你上面显示的相同的东西。

.cke_reset_all, .cke_reset_all *, .cke_reset_all a, .cke_reset_all textarea {
margin: 0;
padding: 0;
border: 0;
background: transparent;
text-decoration: none;
width: auto;
height: auto;
vertical-align: baseline;
box-sizing: content-box;
position: static;
transition: none;
border-collapse: collapse;
font: normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;
color: #000;
text-align: left;
white-space: nowrap;
cursor: auto;
float: none;}

祝你好运