hackalive Posted April 1, 2012 Share Posted April 1, 2012 Hi guys, I have the following code: CSS * { margin: 0 0 0 0; } body, html { overflow: hidden; } #container { } #setA { float: left; display: inline-block; margin-left: 0.75in; } #setB { float: left; display: inline-block; margin-left: 0.75in; } #setC { float: left; display: inline-block; margin-left: 0.75in; } .item { background: blue; width: 500px; height: 500px; } PHP <div id="container"> <div id="setA"> <div class="item"></div> </div> <div id="setB"> <div class="item"></div> </div> <div id="setC"> <div class="item"></div> </div> </div> On my screen "SetC" goes onto a new line and does not overflow the screen horizontally (and then need to scroll to see it) like it should. How can I fix this? Link to comment https://forums.phpfreaks.com/topic/260125-overflow/ Share on other sites More sharing options...
AyKay47 Posted April 1, 2012 Share Posted April 1, 2012 this has to do with the width of #container; http://jsfiddle.net/9LsEs/1/ Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333278 Share on other sites More sharing options...
hackalive Posted April 1, 2012 Author Share Posted April 1, 2012 Thanks for your reply, however what if I don't know the width as a number? Im placing two jQuery isotope instances side by side so I have no idea what the overflow is. Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333283 Share on other sites More sharing options...
AyKay47 Posted April 2, 2012 Share Posted April 2, 2012 Thanks for your reply, however what if I don't know the width as a number? Im placing two jQuery isotope instances side by side so I have no idea what the overflow is. need to have a fixed width set. Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333418 Share on other sites More sharing options...
hackalive Posted April 2, 2012 Author Share Posted April 2, 2012 Well there is no way to tell that. How about jquery appending the CSS? Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333516 Share on other sites More sharing options...
AyKay47 Posted April 2, 2012 Share Posted April 2, 2012 you would have to calculate the width needed and set that to #container using something like JS yes. Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333517 Share on other sites More sharing options...
hackalive Posted April 2, 2012 Author Share Posted April 2, 2012 How can I calculate the width needed? Or how can I place two instances of isotope in the same div to get out of this issue? (or is there some other jquery/css way out of this? how do they do it with the HTML5 presentation apps?) Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1333533 Share on other sites More sharing options...
hackalive Posted April 6, 2012 Author Share Posted April 6, 2012 bump Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1334852 Share on other sites More sharing options...
hackalive Posted April 21, 2012 Author Share Posted April 21, 2012 bump Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1339271 Share on other sites More sharing options...
hackalive Posted April 28, 2012 Author Share Posted April 28, 2012 bump Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1341338 Share on other sites More sharing options...
White_Lily Posted August 29, 2012 Share Posted August 29, 2012 Setting a width in CSS is simple: width:230px; change "230" to suite the container width, to judge this just up the number until they are all how you want them. Link to comment https://forums.phpfreaks.com/topic/260125-overflow/#findComment-1373521 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.