NoahLE
NoahLE

Reputation: 325

Weird behavior in Chrome (misaligned elements that fix themselves when page is refreshed)

I'm working on a little portfolio website right now and I'm having some trouble with my nav bar.

It works fine in IE and Firefox, but for some reason when it's loaded in chrome the elements don't line up (when the page is refreshed it corrects itself).

What it should look like

What it looks like in Chrome

I was wondering what could be causing this and for future reference what would be a good way about debugging a problem like this? Thanks in advance!

Upvotes: 0

Views: 373

Answers (1)

dsuess
dsuess

Reputation: 5347

adding float left to your image will fix it.

#emblem{ 
    float: left
    // other styles
}

Upvotes: 1

Related Questions