<style>
.content{
width: 80%;
outline: 1px solid red;
display: table-cell;
}
.sidebar{
width: 20%;
outline: 1px solid blue;
display: table-cell;
}
.container{
display: table;
width: 100%;
}
</style>
<div class="container">
<div class="content"></div>
<div class="sidebar" contenteditable>Эта область - редактируемая.</div>
</div>