2017-05-17 3 views
0

의 폭을 설정하는 방법!ckeditor <a href="https://i.stack.imgur.com/sFoSz.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/sFoSz.png" alt="enter image description here"></a></p> <p>이에 도와주세요 아래에 대한 폭을 설정하는 방법을 Ckeditor

+0

이 [문서]를 따라 (http://docs.ckeditor.com/#!/guide/dev_size) – Webinion

+0

는 작동하지 않습니다 ... –

+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;} 

행운

관련 문제

 관련 문제