Responsive Site with jQuery [closed]

0

I'm in doubt is it better to make a responsive website using media queries or jQuery?

    
asked by anonymous 02.06.2018 / 01:54

1 answer

0

Simple, with CSS and following some rules, jQuery is just a javascript library so it will not set the page style, what I recommend is to use measures with% instead of pixels as it will fit the screen and not a fixed measure, use the meta tag viewport for the best visualization of your site in some devices, and the media-query you can specify styles, for example @media screen specific CSS for monitors, @media print for printers, @media ( max-width: 480px) for smaller screens such as a cell phone.

    
02.06.2018 / 02:04