What is the solution to remove hover effects on elements in CSS?
Consider the following HTML and CSS code:
@media (max-width: 1220px) {
.column {
width: 200px;
}
.para {
display: none;
}
.link:hover {
color: red;
}
}
@media (max-width: 992px) {
.column {
width: 100px;
}
}
<div class="column">
<a class="link" href="#">Some link</a>
<p class="para">
Some para
</p>
</div>
Given that there are many more elements, how can you disable all hover effects for elements on screens smaller than 992px?