JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.626/styles/kendo.common.min.css">
<script src="http://cdn.kendostatic.com/2013.2.626/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2013.2.626/styles/kendo.default.min.css">
<div class="demo-section">
    <div id="topEditor">
        <h2>Comprehensive <br />HTML5/JavaScript framework <br />for modern web and mobile app development</h2>
        <p>
            Kendo UI is everything professional developers need to build HTML5 sites and mobile apps.
            Today, productivity of an average HTML/jQuery developer is hampered by assembling a Frankenstein framework of disparate JavaScript libraries and plug-ins.
        </p>
        <p>
            Kendo UI has it all: rich jQuery-based widgets, a simple and consistent programming interface,
            a rock-solid DataSource, validation, internationalization, a MVVM framework, themes, templates and the list goes on. 
        </p>
    </div>
<div contentEditable class='column'>
    <img src="http://demos.kendoui.com/content/web/editor/web.png" />
    <h3>Web app <br />development <br />framework</h3>
    <p>
        Kendo UI Web provides you with a simple and consistent programming interface, polished and innovative UI widgets for the web, powered by jQuery, HTML5 & CSS3, a MVVM framework, themes which are easily customizable to fit the widgets to your web application, templates and much more. All that's left to do is to develop modern desktop and mobile web applications by leveraging your web development skills while unlocking the power of JavaScript, HTML5 & CSS3, and using the intuitive <br /> <a href="http://www.kendoui.com/web.aspx" title="Kendo UI Web">Kendo UI Web</a>. 
    </p>
</div>
<div contentEditable class="column">
    <img src="http://demos.kendoui.com/content/web/editor/mobile.png" />
    <h3>Mobile app <br />development <br />framework</h3>
    <p>
        Build native-like mobile apps for...

CSS

.demo-section {
    padding: 40px;
}
.k-editor-inline {
    margin: 0;
    padding: 21px 21px 11px;
    border-width: 0;
    box-shadow: none;
    background: none;
}
.k-editor-inline.k-state-active {
    border-width: 1px;
    padding: 20px 20px 10px;
    background: none;
}
#topEditor h2, .column h3 {
    font-size: 24px;
    color: #e15613;
    font-family: "Droid Sans",DroidSansWeb,"Segoe UI","Lucida Sans Unicode",Arial,Helvetica,sans-serif;
}
.k-editor-inline p {
    font-size: 13px;
}
.column {
    display: inline-block;
    vertical-align: top;
    width: 170px;
}
.column a {
    color: #e15613;
}
.column h3 {
    padding-top: 10px;
    font-size: 15px;
}
.k-table {s
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #999;
    width: 100%;
}
.k-table td, .k-table th {
    border: 1px solid #999;
    padding: 3px;
}

JavaScript

$(".column").kendoEditor({
    tools: [
        "bold",
        "italic",
        "underline",
        "createLink",
        "unlink",
        "insertImage"
    ]
});