だから私はただ楽しみのために小さなサイトを作っています - そして HTML をもう少しよく学ぶために。
私は4つのdivを持っています。コラージュのようにアレンジしたいです。私はそれらのうちの3つを完璧な位置に持っていますが、CSSでdisplay:noneで他の3つを非表示にしない限り、4つ目はまったく表示されません...
なぜこれが起こるのか知っている人はいますか?UbuntuでChromiumを使用しています。
<body>
<center>
<div id="content1">
</div>
<div id="content2">
</div>
<div id="content3">
</div>
<div id="cont4">
THIS ONE DOESN'T SHOW UP.
</div>
</center>
</body>
CSSは次のとおりです。
#content1{
width:230px;
height: 160px;
background-color:blue;
border-radius:10px;
position: relative;
left: -240px;
}
#content2{
width:230px;
height: 350px;
background-color:red;
margin-top: 10px;
border-radius:10px;
position: relative;
left: -240px;
}
#content3{
width:230px;
height: 520px;
background-color:red;
border-radius:10px;
position: relative;
top: -520px;
}
#cont4{
width:230px;
height: 350px;
background-color:purple;
position: relative;
left: 240px;
}