Created
September 5, 2026 10:29
-
-
Save thinkphp/cefb686302c4f316191e760da0ec3511 to your computer and use it in GitHub Desktop.
Style.css Galerie Node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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