IE11 in Parallels Desktop is using wrong css code? - css

I was testing some css code in IE11 in Parallels desktop as I often do, using Codekit 2 as server/sass compiler. The Flexbox code was not working as it should.
I looked in the F12 window and it looks like this:
As you can see, all the ms-related flexbox code is marked as invalid and it's trying to use the webkit code, as if the user agent is Safari.
Why would this happen and how can I be sure IE is using it own user agent?

Related

Are CSS data attributes available on mobile browsers?

I have CSS that isn't working on any browsers on my smartphone (Galaxy S7 with Oreo). This is an example line of the code;
div[data-quickedit-field-id="node/859/body/en/full"] th{background-color: #81CFD6;}
Here's some background; this site has other code that works on my phone, this code works on desktop, I've checked the W3C Schools website and the Mozilla Developer website (as well as a few others) and I haven't been able to find any information on this, so I'm wondering if there's any reason the data attributes wouldn't work on smartphones.
Only use quickedit for users that have access to in-place editing else when a testbot checks as an anonymous user it generates an error. Try to avoid the code unless it is necessary.
Attribute selectors should work in all the modern mobile browsers. Checked that with your attribute and value and it is working good in my mobile (I've checked in Motorolla One Power and Redmi Note 7 Pro using chrome browser).
Here is the link to check in mobile: http://naasu.me/su-fixes/css/are-css-data-attributes-available-on-mobile-browsers/
If this is still not working for you, try using contains selector by adding * with the attribute([attribute*=value]).

CSS Grid Browser Compatibility

I just completed successfully transforming my site to CSS Grid. It works fine in Chrome and Firefox but scrambles things a bit in Edge and IE. In Safari for Windows it is also not right, but I believe that is an old version of Safari. I don't have an Apple to try an up-to-date version. Chrome and Firefox seems to have the lions share of usage statistics, so I am probably OK, but I thought I would see if anyone
has other opinions before I publish the site. Thanks for any suggestions.
you can loook at the can I use it page.
For browser which not support CSS Grid u can try a Modernizr Script. Try to look in the docs here

CSS3 marquee not sliding in Chrome and Opera

I am quite new in CSS3. W wanted to do a simple marquee but i dont want to use tag and JS/JQuery. Perfect sollution for me is marquee in CSS3 but it's not sliding in Chrome and Opera (in Firefox and IE works fine). What am I writed wrong?
This is a simple example of my code:
http://pastebin.com/fG8As6i7
Chrome seems to have abandoned support for the CSS3 marquee stuff. I am using my Raspberry Pi to display stock data in a CSS3 marquee, and that has been working fine - recently, I discovered that on my laptop (with latest Chrome) the page is no longer working. When I check in developer tools, I also see that the marquee properties like (-webkit-)marquee-style are now unrecognized ("Unknown property name"). My Raspberry Pi has an older version of Chrome in which this still works. As an alternative, use the element, which seems to be okay in Chrome currently (v32 Beta). However, it probably won't last. The WhatWG standard already declares it as obsolete: http://www.whatwg.org/specs/web-apps/current-work/multipage/obsolete.html
The only solution that will work in the long run is based on JavaScript and/or a custom CSS animation (for example with keyframes).
EDIT: Sorry, didn't read enough... Apparently, you're actually already trying to get it done with CSS animations.

Local testing WP theme in IE8 gives a strange layout?

Trying to test my theme on IE8 locally gives a bad result. But on the testing server it looks much better (not yet the same as FF or Chrome).
What do i need to do so my local IE8 behaves the same as IE8 on the server??
I am trying to get the full-screen background in IE8 to work with transparent div's
Bit clueless here.
regards
oh i use xampp for windows
Without a link or code, all I can say is be sure your code is W3C valid. Missing and out of place tags are leading causes of bad IE display in Wordpress. Use the W3C Validator either live at http://validator.w3.org/ or as a local standalone http://habilis.net/validator-sac/

What's the best way to emulate a firebug workflow for css in IE6?

So I do quite a lot of CSS development, and I work with Firefox / Firebug A LOT. I generally know how to debug for IE6/IE7 (as far as techniques) and if I have the source, I can easily just edit the actual files and run a local server on a linux machine and test it in IE, going back and forth until it's fixed.
I find myself lately being asked to debug problems in IE6 when I don't have the source. Is there anyway to emulate a firebug like flow in IE6?
Firebug Lite doesn't allow you to change css values, nor does IETester. It doesn't necessarily have to be an inline tool (maybe there is some utility to quickly download 1 off webpages and their dependencies), but I'm definitely looking for the most productive solution to fixing bugs in IE when I don't have the source readily available to me.
Try the IE Dev Toolbar.
It's not as convenient or user-friendly as Firebug, but it can modify CSS and HTML attributes.
Firebug Lite is the best way to debug html in IE.
Firebug is an extension for Firefox,
but what happens when you need to test
your pages in Internet Explorer,
Opera, and Safari?
The solution is Firebug Lite, a
JavaScript file you can insert into
your pages to simulate some Firebug
features in browsers that are not
named "Firefox".
Firebug Lite creates the variable
"firebug" and doesn't affect or
interfere with HTML elements that
aren't created by itself.
Since you already know about it and it doesn't fit what you need, take a look at DebugBar. There is also a MS solution with Internet Explorer Developer Toolbar.
you have tryed Internet Explorer developer toolbar
Why, the IE developer toolbar of course!
It allows manipulation of HTML and CSS values.
3 solutions which i use always
Use IE 8 with developer toolbar in IE 7 emulation mode to solve problems of IE 7 and for IE 8 use in normal mode
for IE 6 it's best till date for me i use this a lot http://www.paciellogroup.com/blog/?p=7
and this to judge right selectors it's very good http://www.westciv.com/mri/ ( i use this for all browser, because it can tell perfect selector for element )
Firebug lite and IE developer toolbar on IE7 not much useful

Resources