How may I arrenge my three videos in the link above as per image attached beow of this text.
Hi there Gunjan15697.
Looking at the image you have provided I assume the width of circled area will have a max-width of 1200px.
If you want to replicate that exactly for your videos I would suggest using a flexbox.
I looked at your codepen example and have added the following in my inspector
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 1200px;
margin: 0 auto;
this displays your videos to match the circled section in the image. Hope this helps
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.