Responsive CSS is not read by the site

1

The responsive.css file is not being read by my site.

I'm calling it like this:

   <link type="text/css" rel="stylesheet" href="css/responsive.css">

Inside it there is the following code:

@media screen and (max-width: 640px) {
.right-side { width: 100%; }}

In this case, right-side is set to 50% .

Which is not being applied when I emulate the browser in the mobile version. Galaxy S5 (360 * 640)

What can it be?

    
asked by anonymous 08.05.2018 / 14:03

1 answer

2

Added the following meta tags in <head> ?

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
    
08.05.2018 / 14:27