gsharp
gsharp

Reputation: 27927

Unwanted Stylesheet behaviour in Firefox

Please have a look at the following Kendo UI Dojo

http://dojo.telerik.com/@geeforceone/IkiCO

enter image description here

It renders the following html in Firefox. "right" should be also placed in the header, but it's not. It works fine in IE11 and Chrome.

What I'm doing wrong?

Upvotes: 0

Views: 12

Answers (1)

Robbin van der Jagt
Robbin van der Jagt

Reputation: 796

It's because you're telling the object to flow right, but your 'left' is not floating. Because of this the box seems to break. If you add a float:left; to the 'left' div it will result in the proper position of the div

http://dojo.telerik.com/ImUsA

Upvotes: 1

Related Questions