Template
Tabloid header/styles.css
From Dogcraft Wiki
(Created page with "#tabloid { padding: 1rem 15%; ββdisplay:grid; grid-template-columns: 1fr 1fr;: column-gap: 1rem; text-align: justify; column-count: 2; } #tabloid div:nth-of-type(3n-2) { grid-column:span 2; } @media screen and (max-width: 1000px) { #tabloid { column-count: 1; } } @media screen and (max-width: 450px) { #tabloid { padding: 1rem 0; } }") Β |
(No difference)
|
Latest revision as of 00:18, 27 January 2024
#tabloid {
padding: 1rem 15%;
/*display:grid;
grid-template-columns: 1fr 1fr;*/
column-gap: 1rem;
text-align: justify;
column-count: 2;
}
#tabloid div:nth-of-type(3n-2) {
grid-column:span 2;
}
@media screen and (max-width: 1000px) {
#tabloid {
column-count: 1;
}
}
@media screen and (max-width: 450px) {
#tabloid {
padding: 1rem 0;
}
}