I'm using repl.it for reference, https://repl.it/@hungrygoat/flexbox-mobile-first-starter-1
How do I make it so that everytime I switch from mobile to tablet and larger screens, the top logo moves to the left side of the screen?
I'm using repl.it for reference, https://repl.it/@hungrygoat/flexbox-mobile-first-starter-1
How do I make it so that everytime I switch from mobile to tablet and larger screens, the top logo moves to the left side of the screen?
You can try css media query
<style>
.logo{
float:left;
}
/* On screens that are 500px wide or less */
@media screen and (max-width: 500px) {
.logo {
float: none;
}
}
</style>