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.
21 lines
323 B
21 lines
323 B
3 months ago
|
.grid_container {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 3fr 1fr;
|
||
|
column-gap: 30px;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
grid-column: span 3;
|
||
|
text-align: center;
|
||
|
border-bottom: 2px solid gray;
|
||
|
}
|
||
|
|
||
|
article img {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
grid-column: span 3;
|
||
|
text-align: center;
|
||
|
border-top: 2px solid gray;
|
||
|
}
|