CSS margin:0 auto; failure is not centered

When writing the code, I found that the video tag write margin:0 auto; does not show the centering effect, because the display: block element is required to achieve the effect. The video tag defaults to display: inline-block; first, change the display to block. Then use margin:0 auto; to solve it. Summarize the situation of margin:0 auto; failure in the evening

Guess you like

Origin blog.csdn.net/YL971129/article/details/114119701