HTML5 Video dimensions in Safari IOS

前端 未结 5 950
渐次进展
渐次进展 2021-01-06 01:50

I\'m building a website for a client who\'s majority of content is video. I\'m using the HTML5 video element to display the content but have problems when it comes to Safari

5条回答
  •  误落风尘
    2021-01-06 02:00

    I used the following CSS that worked for me. Tested on iPad mini with iOS 7.1

    video {
     min-height: 100%; 
     min-width: 100%; 
     height: auto !important;
     width: auto !important; 
    }
    

提交回复
热议问题