JSFiddle - React, Tailwind, and code Playground
by LinkinTED
HTML
<div id="content" class="content-width">
<h2 class="headline"> My Headline </h2>
<h3 class="subheadline"> My Subheadline </h3>
<table id="actions">
<tr><td>... some table content</td></tr>
</table>
<div> more content... </div>
</div>
CSS
div.content-width {
width: 90%;
margin: 0 auto;
min-width: 900px;
}
h2.headline {
margin: 30px 0 0 0;
padding: 0;
display: inline-block;
font-size: 30px;
background: blue;
}
h3.subheadline {
padding: 30px 0 0 0;
display: inline-block;
font-size: 16px;
margin: 0 0 0 8px;
color: #b3b3b3;
background: green;
}
#actions {
float: right;
padding: 0;
margin: 34px 0 0 0;
background: yellow;
}