I need help showing a div
if the screen resolution is larger then 700px
.
The div:
div style="width:70%;margin-left:225px;"
I need help showing a div
if the screen resolution is larger then 700px
.
The div:
div style="width:70%;margin-left:225px;"
Use media queries
@media (min-width: 700px) {
yourDivSelector{ // div id or class or any other selector
display:block
}
}