Is there a CSS media query to detect Windows?

前端 未结 4 1649
天命终不由人
天命终不由人 2020-12-03 09:56

I want to specify two slightly different background colors, one for Mac OS, one for Windows.

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 10:43

    it is available in the latest mozilla version.

    -moz-os-version provides following values:

    • windows-xp
    • windows-vista
    • windows-win7
    • windows-win8

    support is limited https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries

    @media (-moz-os-version: windows-xp), (-moz-os-version: windows-vista),
    (-moz-os-version: windows-win7), (-moz-os-version: windows-win8) {
        body{
            background-color: white;
        }
    }
    

提交回复
热议问题