Rishabh
Rishabh

Reputation: 13

CSS Media query is not working in safari browser

I am making one project to react js and CSS. For making it responsive I am using the media query. But after adding all the CSS and media query the media query is not working in the safari browser of phone and pc. Please, anyone, help me or suggest me how can I fix this issue.

Upvotes: 1

Views: 604

Answers (1)

Hemant mehra
Hemant mehra

Reputation: 46

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { /* STYLES GO HERE */ }

Upvotes: 1

Related Questions