Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

YouTube Videos on HTML Page

I am making a sample site, and I have some YouTube videos on the site. Is there a way to have at least two videos on one line, instead of single videos? I read online about using a table, but not sure how it would work.

2 Answers

Tom Bedford
Tom Bedford
15,645 Points

If you are embedding with an iframe you can style it as you would any other element with CSS. I think iframes are 'dislay: inline` by default, you may just need to adjust the width so two can fit on one line.

CodePen Example

p.s. CodePen needs YouTube HTML5 playback enabled to see videos in a pen.

This worked perfectly. Thank you.