简体   繁体   中英

When aligning the logo using float the header goes wonky HTML

So I'm extremely new to html and css and I want to create a website. But when I use float: left; to make my logo stay to the left, the header goes wonky.

https://jsfiddle.net/bm0dynw6/

 .logo { float: left; }
 <div class="header"> <img class="logo" src="PolyNOTEMBLEM.png" width="330" height="82.5" /> <button id="Home" class="tablink" onclick="window.location.href='[Redacted]'" > Discord invite </button> </div>

You can use

.header::after {
    display: block;
    clear: both;
    content: "";
}

or

.header {    
    display: flex;
    justify-content: space-between;
}

and remove the float:left from logo

USE THIS

.header {    
    display: flex;
    align-items:flex-start;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM