Dmytro Khilchuk
Dmytro Khilchuk

Reputation: 47

Media queries (max-width) launch at not specified width

screen

button in the center should be red, when width less than 1024px, but on the image I have width 926px and it is not working. It starts to work only when width becomes less than 922px; I can`t understand why. And how I can correct it?

@media (max-width: 1024px) {
.contacts-page .input-component button {
    background: red;
}

Upvotes: 0

Views: 158

Answers (1)

FalconIA
FalconIA

Reputation: 91

The width for media query is window width.

Upvotes: 1

Related Questions