Styling browser-native video controls

前端 未结 5 832
长发绾君心
长发绾君心 2020-11-29 09:21

Is it possible to cross-browser style the controls of a browser-native video such as video from HTML5\'s video tag?

I do not understand if it is possible or not, I c

5条回答
  •  孤独总比滥情好
    2020-11-29 09:58

    Here is a good example for styling native player controls(just tested in Chrome): https://codepen.io/BainjaminLafalize/pen/GiJwn

    To change the width of the player controls bar:

    video::-webkit-media-controls-panel {
      width: 40px;
    }
    

提交回复
热议问题