Quantcast
Channel: CSS Tutorial
Viewing all articles
Browse latest Browse all 11

Make YouTube and Vimeo Videos Responsive with CSS

$
0
0

Hi,

I recently made some videos on StudioWeb.com’s home page responsive with some simple CSS code. Here is the code that should be written in between your CSS style block:

.responsive-container {
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 30px;
		height: 0;
		overflow: hidden;
		margin-bottom: 50px;
	}

.responsive-container iframe {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
	}

Here is a video of me applying the code:

I hope that helps!

Stefan

The post Make YouTube and Vimeo Videos Responsive with CSS appeared first on CSS Tutorial.


Viewing all articles
Browse latest Browse all 11

Trending Articles