JSFiddle - React, Tailwind, and code Playground

by NerudoMregi

HTML

<div id="site-info">
    Copyright (c) 2013 Acme Inc. All rights reserved.
    <ul class='menu'>
        <li>menu item</li>
         <li>Menu item</li>
    </ul>
 </div>

CSS

#site-info{
    display: inline-block;
    line-height: 30px; /* adjust to aling everything up or remove */
}
.menu{
       list-style: none; /* to remove the bullets */
       display:inline-block;
}
.menu li{/* this will show all the li tags inline with everything */
    display:inline-block; 
    padding: 0 20px;
}