width=device-width not working in Mobile IE

后端 未结 3 901
故里飘歌
故里飘歌 2021-02-09 12:00

I\'m trying to make a website that works well on mobile phones. So far every phone that I have tested works well, but phones with Windows Mobile IE. It seem that Mobile IE just

3条回答
  •  太阳男子
    2021-02-09 12:36

    in CSS write this

    @-ms-viewport{
        width: device-width;
    }
    

    or in html:

    
    

    and after work device-width

提交回复
热议问题