Using media query with each property
Suppose I have a
div
which is to be displayed only above lg
screens. I have a button
inside that div
. Should I use lg
with each property of the button or not?
2 Replies
no. Defining it on the parent element is enough.
Understood. Thanks