DEV Community

Discussion on: CSS Selectors: Let's talk basics

Collapse
 
ulvis_b profile image
Ulvis • Edited

But is good idea do thinks a like
@media only screen and (max-width: 600px) {
@import url("six.css");
}
@media only screen and (min-width: 700px) {
@import url("other.css");
}

Collapse
 
misslorsx profile image
Laura Jane

I’m just highlighting the basic CSS selectors, I aim to go more in depth with @media /targeting paragraph classes etc in another article, it was mainly just targeting ID & Classes & a few others for now. 😊