-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
CSS による配置(発展)の position の章で、index.html や style.css に書かれているコードと画像が一致していないかと思われます。画像に合わせるなら、
<!-- index.html -->
<body>
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
</body>/* style.css */
.box1 {
width: 200px;
height: 200px;
background-color: lightcoral;
}
.box2 {
position: relative;
top: 50px;
left: 50px;
width: 200px;
height: 200px;
background-color: lightblue;
}
.box3 {
width: 200px;
height: 200px;
background-color: lightgreen;
}Metadata
Metadata
Assignees
Labels
No labels