Is it possible for TinyMCE to adjust the content within an absolutely positioned container and update the width while editing?
<div class="container">
<textarea>This is my very long text that should not break. This is my very long text that should not break</textarea>
</div>
<script src="//tinymce.cachefly.net/4.1/tinymce.min.js"></script>
<script>
tinymce.init({
selector:'textarea',
plugins: "autoresize"
});
</script>
The CSS:
.container {
position: absolute;
top: 10px;
left: 10px;
width: auto;
}