captain lizard
captain lizard

Reputation: 533

Removing black border on video box in html (using <video> tag)

Could anybody advise me how to remove the black border around the box in which the video is displayed on the homepage of http://yasawahomestays.com/ ?

Upvotes: 5

Views: 11140

Answers (3)

Chirapong phomphoo
Chirapong phomphoo

Reputation: 11

it work for me

 clip-path: inset(0px)

Upvotes: 1

lilo.jacob
lilo.jacob

Reputation: 2414

I had the same issue. I solved it by setting the CSS style for video tag:

outline: none;

Upvotes: 1

vincent030298
vincent030298

Reputation: 31

I think in your css. Change the names though:

.video-js .vjs-tech {
top: -2px;
}

.video-js {
    overflow: hidden;
}

Credits to : Unwanted border appearing on video element

Upvotes: 0

Related Questions