Questions tagged as 'media-queries'

0
answers

What is the difference between the Media Query Pointer and Any-Pointer?

I was seeing a way to determine if user access is done by a Desktop, usually by having a mouse as the interaction device. Or if the user is accessing a mobile device, usually without the mouse to interact with the screen. Then I saw that...
asked by 17.12.2018 / 12:26
3
answers

How do I work with responsive design?

I use Media Queries, right, and my layout will have to adapt to various devices like tablets, iphone, smartphones, notebook and TVs, however I found a problem on the tablet in landscape mode, it has an approximate resolution of 1024x768 ,...
asked by 15.04.2015 / 14:31
3
answers

What is the equivalent of the average CSS queries in Javascript?

When I want to apply a certain style to the size of the screen, I usually use the CSS media queries. Example: @media only screen and (max-width : 768px) { .container { width:960px; } } I would like to know if there is an...
asked by 06.11.2017 / 16:10
2
answers

Use jQuery function only in @media screen and (max-width: 960px)

We know that there are @media queries . They work with CSS. But I need to do with JavaScript. I need bxSlider to work only on% w / o%.     
asked by 18.03.2014 / 13:40
2
answers

Navbar scrollbar does not appear in another width

I used the code below to change when the menu button for mobile was displayed and worked, but the scroll bar does not appear in this size. What can I do to display the scroll bar? If need be I will put images. @media (max-width: 991px) { ....
asked by 12.01.2017 / 13:21
1
answer

How to put the page number to be printed with CSS in @media print

I want to put the page number when the user wants to print my web page. For example, when it will print my page, and it will be broken in two, I want it to appear "page 2/2" and "2/2" on pages, using CSS.     
asked by 26.04.2017 / 21:20
1
answer

How to work with CSS media queries?

I would like information on how to use media queries . How do I set media of a site below? 2560 x 1440 2560 x 1080 1920 x 1080 1366 x 768 1280 x 1024 1280 x 768 As my site is extended to the entire screen, it's a layout th...
asked by 05.06.2014 / 21:20
1
answer

Media Queries does not work

I'm developing a WordPress site that needs to be responsive and for that I'm using media queries: <head> ... <link rel="stylesheet" href="css/style.css"/> <link rel="stylesheet" href="css/mobile.css" media="screen and (max-width...
asked by 07.04.2014 / 00:49
3
answers

Media width queries applied incorrectly on mobile devices

I'm trying to use media queries on a site thinking about mobile devices, but I'm having a problem: although the rules specify what to do when the width is small - and they apply correctly when you see in a browser with the size of the window...
asked by 17.12.2015 / 15:32
2
answers

Media Query for PC

Hello, I basically want to make two models of my site, one for mobile devices and one for computers. I would like to make a code in CSS that is read only by PC browsers, but if I use for example: @media all and (min-width: 1000px) and (max-wid...
asked by 28.02.2015 / 15:59