How to move image with css/html

Just tweak the CSS a little:

.logo{
    width: 100px;
    display: inline-flex;
}

.logo img{
    margin: auto 5px;
    float: left;
    width: 150px;
    height: 38px;
}

Does this work?

This solution worked for me, but I have no idea for you as you didn’t put your full code…

Leave a Comment