Skip to content

Instantly share code, notes, and snippets.

@mario-neuhold
Created May 10, 2019 09:44
Show Gist options
  • Save mario-neuhold/ba0059117880750ae2ec3b502eab00c6 to your computer and use it in GitHub Desktop.
Save mario-neuhold/ba0059117880750ae2ec3b502eab00c6 to your computer and use it in GitHub Desktop.
/*---------------------
IE 11 grid fix for Gutenberg core block Media-Text
as discussed here
https://github.com/WordPress/gutenberg/issues/11577#issuecomment-465177310
-----------------------*/
.wp-block-media-text {
display: -ms-grid;
-ms-grid-columns: 50% auto;
}
/* default media on the left */
.wp-block-media-text .wp-block-media-text__media {
-ms-grid-column: 1;
}
.wp-block-media-text .wp-block-media-text__content {
-ms-grid-column: 2;
}
/* media on the right */
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
-ms-grid-column: 2;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
-ms-grid-column: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment