2つのdivを並べて並べるのに問題があります。私が理解しているところでは、「浮動小数点:左」を使用する必要がありますが、divは互いの上に表示されません。私はブラウザかもしれませんが、私はFF、Opera、IEで試してみましたが結果は同じです。ここ2つのdivを並べて整列する
は、その簡単にどこ行くかを確認するように、すべてのdivは異なる色です私のコード
<head>
<style>
div.container{
position: relative;
width:800px;
height: 1000px;
background-color: red;
overflow: hidden;
}
div.banner{
position: relative;
align:left;
width: 800px;
height: 100px;
float:left;
background-color: blue;
clear:both;
}
div.navBar{
position: absolute;
width: 200px;
height: 300px;
float:left;
background-color: yellow;
clear: left;
}
div.content{
position: absolute:
width: auto;
height: auto;
float:left;
background-color: orange;
clear: right;
}
</style>
</head>
<body>
<div name="banner" class="banner">
This will be the banner
</div>
<div name="container" class="container">
<div name="navBar" class="navBar">
This will be the navbar
</div>
<div name="content" class="content">
This will be the content
</div>
</div>
</body>
です。
?あなたはどちらを並べてほしいですか? – mergesort
ここでうまく動作しますhttp://jsfiddle.net/7HDtU/本体またはブラウザのウィンドウを1000px未満の幅に制限しましたか?それは彼らが横並びではなく積み重ねて見えるようにするでしょうか? – JaredMcAteer
あなたは 'div.content {position:absolute:...'にエラーがあります。 ':'の代わりに ';'でなければなりません –