Responsive Photo Gallery
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.upload-section {
margin: 20px 0;
text-align: center;
}
.upload-section input {
padding: 10px;
width: 300px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.upload-section button {
padding: 10px 20px;
border: none;
background-color: #28a745;
color: white;
border-radius: 5px;
cursor: pointer;
}
.upload-section button:hover {
background-color: #218838;
}
.gallery {
column-count: 4;
column-gap: 10px;
width: 90%;
max-width: 1200px;
margin: 20px auto;
}
.gallery img {
width: 100%;
border-radius: 10px;
margin-bottom: 10px;
transition: transform 0.3s, box-shadow 0.3s;
display: block;
}
.gallery img:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1200px) {
.gallery {
column-count: 3;
}
}
@media (max-width: 800px) {
.gallery {
column-count: 2;
}
}
@media (max-width: 600px) {
.gallery {
column-count: 1;
}
}
Add Image
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果