Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Feature query to apply styles to everything except IE

I'm using a feature query, my goal is to display grid on all browsers except IE. IE doesn't support feature queries, so all code in the feature query will be ignored, it's working for me in IE, but on chrome/ all other browsers the code outside of the feature query is applying styles, but the feature query is still working....like its displaying grid, but also taking the margin/padding from the code outside of the feature query... Is there a way around this?

@supports(grid-auto-rows:auto){
    .Gallery{
      display:-ms-grid;
      display:grid;
      grid-gap: 5px;
      grid-template-columns:repeat(auto-fit, minmax(170px, 1fr));
      grid-auto-rows:95px;
      grid-auto-flow: dense;
    }  

    .horiz{
      -ms-grid-column-span: 2;
      grid-column: span 2;
    }
    .vert{
      -ms-grid-row-span: 2;
      grid-row: span 2;
    }
    .big{
      -ms-grid-column-span:2;
      grid-column:span 2;
      -ms-grid-row-span: 2;
      grid-row: span 2;
    }

    .imgContainer {
      width: 100%;
      height: 100%;
    }

    .img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }

  }

STYLES OUTSIDE OF FEATURE QUERY THAT ARE BEING APPLIED

.Gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -1em 0 1em -0.5em;
}

.img {
  padding: 1em 0 0 0.5em;
  flex: 1 0;
  min-width:100%;
  height:100%;
}

1 Answer

Milan Pankhania
Milan Pankhania
3,734 Points

For the block of CSS you have in the feature query, make sure that this bit of code comes after the other bit of code you don't want applied. So first place the code that will run in IE, then place the feature query code after. This is so your styles can be overridden. Hope that makes sense?