Skip to content

Instantly share code, notes, and snippets.

@thinkphp
Created September 5, 2026 10:29
Show Gist options
  • Select an option

  • Save thinkphp/cefb686302c4f316191e760da0ec3511 to your computer and use it in GitHub Desktop.

Select an option

Save thinkphp/cefb686302c4f316191e760da0ec3511 to your computer and use it in GitHub Desktop.
Style.css Galerie Node
body {
font-family: Arial;
text-align: center;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.image-item {
margin: 10px;
width: 200px;
}
.image-item img {
width: 100%;
height: auto;
border: 2px sold #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-item img:hover {
border-color: #333;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment