JSFiddle - React, Tailwind, and code Playground

by audetwebdesign

HTML

<div class="header clear">
        <div class="logo_container">
            <img...

CSS

html,body{
    width: 100%;
    margin: 0;
    padding: 0;
}
.header{
    width: 100%;
    background-color: red;
    position: relative;
    overflow: auto;
}
.logo_container{
    float: right;
    position: relative;
    right: 10px;
    top: 10px;
}
.logo_container img{
    width: 100px;
    height: 100px;
}
.clear{
    clear: both;
}

.logo_container:after, .logo_container::before {
    clear: both;
}