-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Media & Text block is not aligning in IE 11 #11577
Comments
I can see the value in using Wouldn't |
This should really at least get a fallback. Maybe put something like this into the general block stylesheet? (Makes the content float with 50% width in IE11, shows correctly in other browsers)
|
Thanks a million kuchenundkakao! Been futzing with this on a client's site for 2 days. |
Additionally to the flex or float approaches, this actually can be done with grid in IE, via This is what got it working for me on IE11:
|
Thank you so much @mario-neuhold! One small typo in the first grid it says '-ms-grid-columns' and should be '-ms-grid-column'. |
I'm not sure that's a typo @mitchhawkins. I think the plural is for the container and the singular column is for classes within the container. The code, as @mario-neuhold has it, worked for me. |
Still running into this. Fwiw, I'm kinda shocked that a core block shipped without IE11 support. The fix from @mario-neuhold basically fixes thing, but column gap is still missing. It's hard for me to view columns as progressive enhancement. And I can guarantee most clients won't. |
Any chance this will land in WP 5.3? |
I wonder while we know that
display: grid
is NOT supported in IE11 and will not be implemented in any possible way, why are we still pushing for it?We can either drop the IE11 support or stick to the cutting edge CSS techniques.
The text was updated successfully, but these errors were encountered: