Reputation: 9926
The default of the video controles visibility is to be shown on hover. i want to make it visible always
I can't find any way to do it. How this can be possible from the code or css ?
Upvotes: 0
Views: 9054
Reputation: 138
Refer to this. I think you have the same question
Or you can use this css:
video::-webkit-media-controls-panel {
display: flex !important;
opacity: 1 !important;
}
It does have an answer. hopefully it helps
Upvotes: 3