“width: calc(100% / 3);” not working properly in any IE

后端 未结 3 1781
滥情空心
滥情空心 2020-12-19 00:01

I have a 3 column layout that should fill the whole screen so on my columns I am using:

width: calc(100% / 3);

So lets say for example my s

3条回答
  •  难免孤独
    2020-12-19 00:20

    Better option:

    li {
        &:last-child {
            margin-right: -1px;
        }
    }
    

    And you can use: width: calc(100% / 3)

提交回复
热议问题