Skip to content Skip to sidebar Skip to footer

Hide Native Play Button For Video In Google Chrome

I'm trying to hide the default play button in the center of my video. I have a custom play button but the native play button is displaying underneath it on tablet and mobile. I can

Solution 1:

Took a bit of searching, but found it in the comments here and confirmed it works on Chrome for Android.

video::-webkit-media-controls-overlay-play-button {
  display: none;
}

Post a Comment for "Hide Native Play Button For Video In Google Chrome"