Adaptive video in article

When inserting a video into an article there was a problem - the video does not adjust to the browser size, it is always the same width and does not resize. Your browser does not support the video tag. You can solve this problem with css styles. video { width: 100%; height: auto; } video - This is a selector that selects all <video> elements on the page. All styles specified inside the curly braces {} will be applied to those elements....