full screen video disable
  • Post author:

/* Hide the fullscreen button in video controls */
video::-webkit-media-controls-fullscreen-button {
display: none; /* Chrome, Safari */
}

video::-moz-fullscreen-button {
display: none; /* Firefox */
}

/* Hide the fullscreen button in Edge and Internet Explorer */
video::-ms-fullscreen-button {
display: none;
}

/* Hide fullscreen control in the custom controls (if applicable) */
.video-js .vjs-fullscreen-control {
display: none; /* Video.js library */
}