Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search & Filter Pro Display Grid Results in IE

Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • FinQuery
    #216948

    I use some css to display my results in a grid pattern on this page — https://leasequery.com/resources/

    div.lq_search_results {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-gap: 30px 30px;
    margin: 0px;
    }

    However, Internet Explorer doesn’t support Grids. You have to use a -ms-grid. I haven’t found the right css to get this to display in IE properly. Can anybody point me in the right direction?

    Trevor Moderator
    #216961

    I would start with this tutorial:

    https://medium.com/@elad/supporting-css-grid-in-internet-explorer-b38669e75d66

    There are many like this. The key, you will see, is do the IE stuff first in order, then the other browsers.

    FinQuery
    #217070

    Thanks for the link! I’ll check it out.

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Display Grid Results in IE’ is closed to new replies.