calc() not working within media queries

后端 未结 4 1901
滥情空心
滥情空心 2020-11-30 11:06
@media screen and (max-width: calc(2000px-1px)) { 
  .col { width: 200px; }
}

The value after subtraction s

4条回答
  •  生来不讨喜
    2020-11-30 11:29

    ANSWER WAS EDITED 13.02.2018:

    Using calc in media queries is supported by the spec, but support was only implemented by browsers recently (February 2018). Currently, calc in media queries is supported by Safari Technology Preview 49+, Chrome 66+, and Firefox 59+. See MDN's calc() page for the most up-to-date information.

提交回复
热议问题