Here is the HTML code snippet I have:
<div className="img" />
This is the corresponding CSS code:
.row2 {
position: relative;
width: 1790px;
height: 983px;
background-image: url("/img.png");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: #d0c6b5;
background-blend-mode: multiply;
@media (min-width: 375px) and (max-width: 414px) {
}
}
https://i.sstatic.net/aIWX6.png
I intend to utilize a media query to display only a specific part of the screen. How should I go about doing this?