I have the following CSS script:
<style type="text/css">
@media screen and (max-width: 600px) {
.comp {
background-color: #000000;
display: block;
}
}
</style>
<div class="comp">
</div>
Perfectly works the background-color. But what I need is that the DIV COMP becomes invisible when max-width is greater than 600px; and is visible when max-width is less than 600px;