/* 樣式表 */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f2f2f2;
border-radius: 5px;
}
.box {
width: 200px;
height: 200px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
text-align: center;
}
.box:nth-child(1) {
width: 80%;
float: left;
}
.box:nth-child(2) {
width: 20%;
float: right;
}
.box:nth-child(3) {
width: 60%;
float: left;
}
.box:nth-child(4) {
width: 40%;
float: right;
}
.box:nth-child(5) {
width: 10%;
float: left;
}
.box:nth-child(6) {
width: 30%;
float: right;
}
.box:nth-child(7) {
width: 40%;
float: left;
}
.box:nth-child(8) {
width: 20%;
float: right;
}
.box:nth-child(9) {
width: 70%;
float: left;
}
.box:nth-child(10) {
width: 30%;
float: right;
}
.box:hover {
background-color: #ddd;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}