JSFiddle - React, Tailwind, and code Playground
HTML
<table id="header">
<tr>
<td id="logo">
<a href="/">Home</a>
</td>
<td style="border:1px black solid;"></td>
<td id="user_box">
test
</td>
</tr>
</table>
CSS
table#header {
width: 960px;
height: 110px;
border:1px black solid;
}
#logo {
background: url('/assets/img/logo.png') no-repeat center;
width: 300px;
height: 110px;
border: 1px black solid;
}
#user_box {
width: 300px;
height: 60px;
margin-left:100px;
}