I want to access cke_editable class in the body tag. My own defined class is .feed-ckeditor.
I am using the below CSS to access the inner class.
.feed-ckeditor {
.cke_chrome {
border: none !important;
.cke_contents {
height: 100px !important;
}
}
body .cke_editable{
font-size: 20px !important;
line-height: 1.6;
word-wrap: break-word;
}
.cke_bottom {
border-top: 1px solid #c9c9c94d !important;
border-bottom: 1px solid #c9c9c94d !important;
}
}
I am not able to make a font size 20px of the CKEditor text area.
The below image shows the nested hierarchy.