JSFiddle - React, Tailwind, and code Playground

by operatino

HTML

<div class="block">
<div class="inline-block"><img src="http://placehold.it/40x40"></div>
</div>

<div class="block va-middle_w">
<div class="inline-block va-middle">verticaly aligned block</div>
</div>

<table>
    <tr>
        <td><input type="radio" name="new-dosctype"></td>
        <td>octocat</td>
    </tr>
    <tr>
        <td><input type="radio" name="new-dosctype"></td>
        <td>snow leopard</td>
    </tr>
    <tr>
        <td><input type="radio" name="new-dosctype"></td>
        <td>fox</td>
    </tr>
</table>

CSS

.block {
    background: red;
    margin-bottom: 20px;
}

.inline-block {
    display: inline-block;
    color: #fff;
}

.va-middle_w {
    height: 100px;
    line-height: 100px;
}

.va-middle {
    height: 20px;
    background: green;
    vertical-align: middle;
    line-height: 1.2;
}