I have two doubts.
I want to display different elements in different screen size for a
divby using@mediaquery? Can I name the same ID for all the elements.?Can I use same
idfor two elements where if one element displayed another element will be hidden by using@mediaquery?
Note: I know IDs are unique but here I want to use based upon the screen size.
media only screen and (min-width: 480px) {
}
@media only screen and (min-width: 768px) {
}
Please advice me.