
January 29th, 2013, 12:49 AM
|
|
Registered User
|
|
Join Date: Jan 2013
Posts: 10
Time spent in forums: 3 h 16 m 38 sec
Reputation Power: 0
|
|
|
Sounds like it's too big
Posting your code so far would probably help clear things up but this is usually the issue...
Say your main wrapper is 300px
<---------------------- 300px ----------------->
<-- 10px --> <---100px---><---------?--------->
that last div cannot be more than 190px without drpping below the 10 and 100px divs.
to get them side by side I imagine you used something like display: inline-block; ?
If so, in some browsers like Chrome I believe it adds some padding to the divs be default so even though you have the last div set to 190px it will be 194px wide, therefore pushing it below.
Hope this helps.
|