K
K
kim1232020-05-14 00:14:06
css
kim123, 2020-05-14 00:14:06

Webkit-min-device-pixel-ratio how to set media query at -992px?

There is a css code that only works on safari, how can I make this code work only at <992px?

media screen and (-webkit-min-device-pixel-ratio:0) {
.form-wrapper .input_form_name::placeholder,
.form-wrapper .input_form_phone::placeholder {
padding: 3px 0 !important;
font-size: 14px;
}
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
Lord_Dantes, 2020-05-19
@Lord_Dantes

@media screen and (max-width:992px){
 // code
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question