Reputation: 325
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).
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
Reputation: 5347
adding float left to your image will fix it.
#emblem{
float: left
// other styles
}
Upvotes: 1