zipzap Posted February 22, 2012 Report Share Posted February 22, 2012 <div id="main"> <div id="div1" style="float:left"> <div id="div2" style="float:left"> <div id="div3" style="float:left"> <div id="div4" style="float:left"> <div id="div5" style="float:left"> </div>A ideia é ter um width fixo no div main e ver todos os divs na horizontal com scroll,o problema é que assim que eu ponhoum width mais pequeno os restantes divs vão para baixo.Como obter tipo todos os subdivs na horizontal com scroll? Quote Link to comment Share on other sites More sharing options...
0 tiago31 Posted February 22, 2012 Report Share Posted February 22, 2012 ola tudo bem amigo.coloque o css e uma imagem de exemplo para mim ter uma ideia melhor Quote Link to comment Share on other sites More sharing options...
0 Markus Magnus Posted February 22, 2012 Report Share Posted February 22, 2012 Você bem que podia ter dado uma ajudada pelo menos colocando o html inteiro, mas pelo que entendi acredito que seja isso que você quiz dizer<html> <head> <style type="text/css" > #main { position:relative; width:230px; border:1px solid #FF0000; height:130px; overflow:auto; } #div1 { position:absolute; left:0px; width:100px; border:1px solid #00FF00; height:100px; background: #CCCCCC; } #div2 { position:absolute; left:100px; width:100px; border:1px solid #00FF00; height:100px; background: #CCCCCC; } #div3 { position:absolute; left:200px; width:100px; border:1px solid #00FF00; height:100px; background: #CCCCCC; } #div4 { position:absolute; left:300px; width:100px; border:1px solid #00FF00; height:100px; background: #CCCCCC; } #div5 { position:absolute; left:400px; width:100px; border:1px solid #00FF00; height:100px; background: #CCCCCC; } </style> </head> <body> <div id="main"> <div id="div1"> 1 </div> <div id="div2"> 2 </div> <div id="div3"> 3 </div> <div id="div4"> 4 </div> <div id="div5"> 5 </div> </div> </body> </html> Quote Link to comment Share on other sites More sharing options...
0 zipzap Posted February 27, 2012 Author Report Share Posted February 27, 2012 Resolvido.Obrigado. Quote Link to comment Share on other sites More sharing options...
Question
zipzap
A ideia é ter um width fixo no div main e ver todos os divs na horizontal com scroll,o problema é que assim que eu ponhoum width mais pequeno os restantes divs vão para baixo.
Como obter tipo todos os subdivs na horizontal com scroll?
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.