css different paddings on different resolution

How can I set padding to 0 when I have resolution 1800x800px if its higher then 600 then i want padding to be 60 on top

CSS should be like

.div{
padding:0px;
}
@media (min-height: 600px) {
.div{
padding-top: 60px;
}
}

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments