Jump to content
Fórum Script Brasil
  • 0

divs com overflow


zipzap

Question

<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?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

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>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...