JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<div id="content">
    コンテンツ
</div>
<div id="aside">
    サイド
</div>
<div id="footer">
    フッター
</div>

CSS

#content {
    float: left;
    width: 250px;
    background-color: red;
}
#aside {
    float: right;
    width: 100px;
    background-color: yellow;
}
#footer {
    width: 100%;
    background-color: green;
    border: 1px solid #000;
}