CSS Max-Width Media Query Unexpected BehaviorCSS media queries: max-width OR max-heightCSS media queries min-width/max-width not being calledMedia queries not relating to pixels on websiteCSS media queries for Samsung s6after adding Max-Width media query, the background image won't disappearHTML/CSS: @media for exact screen sizeMedia query when max-width is set to 767pxWhy is `max-width` exclusive sometimes?min-width media query always fires while max-width query never firesCSS Media Query Validation

Should the average user with no special access rights be worried about SMS-based 2FA being theoretically interceptable?

Is there any iPhone SE out there with 3D Touch?

Aesthetic proofs that involve Field Theory / Galois Theory

List of 1000 most common words across all languages

Symbol for function composition like a big sum

Why are there two fundamental laws of logic?

Comma Code - Automate the Boring Stuff with Python

How do pilots align the HUD with their eyeballs?

Golf (6-card) Golf!

Can anyone put a name to this Circle of Fifths observation?

Strange Sticky Substance on Digital Camera

Should we use wheatstone bridges nowadays?

Designing a time thief proof safe

Lost Update Understanding

Under what circumstances would RAM locations 0 and 1 be written and/or read on the C64?

Why does NASA publish all the results/data it gets?

My manager quit. Should I agree to defer wage increase to accommodate budget concerns?

Is it more effective to add yeast before or after kneading?

How to justify a team increase when the team is doing good?

Proper way to shut down consumer

Can an integer optimization problem be convex?

1, 2, 4, 8, 16, ... 33?

How to see the previous "Accessed" date in Windows

What are the consequences of high orphan block rate?



CSS Max-Width Media Query Unexpected Behavior


CSS media queries: max-width OR max-heightCSS media queries min-width/max-width not being calledMedia queries not relating to pixels on websiteCSS media queries for Samsung s6after adding Max-Width media query, the background image won't disappearHTML/CSS: @media for exact screen sizeMedia query when max-width is set to 767pxWhy is `max-width` exclusive sometimes?min-width media query always fires while max-width query never firesCSS Media Query Validation






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have used max-width and min-width media queries to make my site responsive without any problems for years. But today I noticed an odd behavior: the max-width rule stopped working for the screen width in the limit. For example If I'm changing color to blue at 899px, it only starts changing it at 898 px.



I'm not sure where the problem is, I tested in multiple browsers, local and production and the result is the same. I even made a code pen and the max-width value keeps getting ignored: https://codepen.io/anon/pen/LzWWqd



body background-color: yellow; 

@media only screen and (max-width: 899px)
body background-color: blue;



The result of that CSS is that the screen is yellow at 899px, where it shouldn't be, it should be blue.



Could this be related to my screen resolution? The only thing I changed was my computer screen. I'm using Windows 10 in a 1440p screen. Before I had windows 10 in a 1080p screen.










share|improve this question



















  • 1





    See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

    – BoltClock
    Mar 28 at 18:41











  • @BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

    – David
    Mar 28 at 18:52

















0















I have used max-width and min-width media queries to make my site responsive without any problems for years. But today I noticed an odd behavior: the max-width rule stopped working for the screen width in the limit. For example If I'm changing color to blue at 899px, it only starts changing it at 898 px.



I'm not sure where the problem is, I tested in multiple browsers, local and production and the result is the same. I even made a code pen and the max-width value keeps getting ignored: https://codepen.io/anon/pen/LzWWqd



body background-color: yellow; 

@media only screen and (max-width: 899px)
body background-color: blue;



The result of that CSS is that the screen is yellow at 899px, where it shouldn't be, it should be blue.



Could this be related to my screen resolution? The only thing I changed was my computer screen. I'm using Windows 10 in a 1440p screen. Before I had windows 10 in a 1080p screen.










share|improve this question



















  • 1





    See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

    – BoltClock
    Mar 28 at 18:41











  • @BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

    – David
    Mar 28 at 18:52













0












0








0








I have used max-width and min-width media queries to make my site responsive without any problems for years. But today I noticed an odd behavior: the max-width rule stopped working for the screen width in the limit. For example If I'm changing color to blue at 899px, it only starts changing it at 898 px.



I'm not sure where the problem is, I tested in multiple browsers, local and production and the result is the same. I even made a code pen and the max-width value keeps getting ignored: https://codepen.io/anon/pen/LzWWqd



body background-color: yellow; 

@media only screen and (max-width: 899px)
body background-color: blue;



The result of that CSS is that the screen is yellow at 899px, where it shouldn't be, it should be blue.



Could this be related to my screen resolution? The only thing I changed was my computer screen. I'm using Windows 10 in a 1440p screen. Before I had windows 10 in a 1080p screen.










share|improve this question














I have used max-width and min-width media queries to make my site responsive without any problems for years. But today I noticed an odd behavior: the max-width rule stopped working for the screen width in the limit. For example If I'm changing color to blue at 899px, it only starts changing it at 898 px.



I'm not sure where the problem is, I tested in multiple browsers, local and production and the result is the same. I even made a code pen and the max-width value keeps getting ignored: https://codepen.io/anon/pen/LzWWqd



body background-color: yellow; 

@media only screen and (max-width: 899px)
body background-color: blue;



The result of that CSS is that the screen is yellow at 899px, where it shouldn't be, it should be blue.



Could this be related to my screen resolution? The only thing I changed was my computer screen. I'm using Windows 10 in a 1440p screen. Before I had windows 10 in a 1080p screen.







css






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 17:40









DavidDavid

294 bronze badges




294 bronze badges










  • 1





    See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

    – BoltClock
    Mar 28 at 18:41











  • @BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

    – David
    Mar 28 at 18:52












  • 1





    See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

    – BoltClock
    Mar 28 at 18:41











  • @BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

    – David
    Mar 28 at 18:52







1




1





See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

– BoltClock
Mar 28 at 18:41





See if the change in hardware caused Windows to change your display scaling settings to compensate. (Unlikely, but worth a look anyway. You'll find scaling settings in the same place as resolution.)

– BoltClock
Mar 28 at 18:41













@BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

– David
Mar 28 at 18:52





@BoltClock Yes! That was the problem. I changed Windows 10 scaling back to 100% and now the Media Query works as expected... Weird that windows scaling produces this kinds of problem and I couldn't find any info about this. Thank you!

– David
Mar 28 at 18:52












0






active

oldest

votes














Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403833%2fcss-max-width-media-query-unexpected-behavior%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55403833%2fcss-max-width-media-query-unexpected-behavior%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript