JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://lonewolfs.x10.mx/libs/ckeditor/ckeditor.js"></script>
<script src="http://lonewolfs.x10.mx/libs/ckeditor/adapters/jquery.js"></script>
<div class="wrapper">
<form id="myfrm" name="myfrm" class="myfrm" action="" method="post">
<textarea id="myeditor" name="myeditor"></textarea>
<input type="submit" id="submit" name="submit" value="Submit" />
</form>
</div>
CSS
.wrapper{width:500px;margin:auto;border:1px solid #333;height:800px;}
color:#CCC;height:50px;position:relative;bottom:0px;}
JavaScript
$(document).ready(function(e) {
var myeditor = $('#myeditor');
myeditor.ckeditor();
myeditor.ckeditorGet().config.resize_enabled = false;
myeditor.ckeditorGet().config.height = 200;
// myeditor.ckeditorGet().config.readOnly = true;
});