Before
<style>
.first-list {
background-color: thistle;
color: whitesmoke;
margin-left: 8px;
}
.second-list {
background-color: thistle;
color: whitesmoke;
margin-left: 16px;
}
</style>
After
<style>
:root {
--background-color: thistle;
--text-color: whitesmoke;
--base: 8px;
}
.first-list {
background-color: var(--background-color);
color: var(--text-color, red);
margin-left: var(--base);
}
.second-list {
background-color: var(--background-color);
color: var(--text-color, red);
margin-left: calc(var(--base) * 2);
}
@media screen and (max-width: 768px) {
:root {
--background-color: salmon;
--text-color: whitesmoke;
--base: 4px;
}
}
</style>
'WEB > CSS' 카테고리의 다른 글
css_고친것들 (0) | 2021.07.05 |
---|---|
CSS: Styling(dreamcoding_home) (0) | 2021.07.02 |
transform& transition(dreamcoding) (0) | 2021.07.02 |
Responsive background(dreamcoding) (0) | 2021.07.02 |
Centering trick(dreamcoding) (0) | 2021.07.02 |