You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
418 B
29 lines
418 B
3 months ago
|
/* CSS styles for my grid demo page */
|
||
|
|
||
|
img {
|
||
|
align-content: center;
|
||
|
height: 160px;
|
||
|
}
|
||
|
|
||
|
.thumbnails {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(6, 1fr);
|
||
|
grid-template-rows: 220px;
|
||
|
grid-rows-auto: 220px;
|
||
|
}
|
||
|
|
||
|
.caption {
|
||
|
align-content: center;
|
||
|
grid-column: 3 / 5;
|
||
|
grid-row: 1 / 3
|
||
|
}
|
||
|
|
||
|
.thumbnails div {
|
||
|
background: lightgreen;
|
||
|
text-align: center;
|
||
|
border: solid black 1px;
|
||
|
}
|
||
|
|
||
|
.thumbnails p {
|
||
|
text-size: 16px;
|
||
|
}
|