表題のとおりですが、以下の方法でうまくできたのでメモ。

【html】

 
<div class="ytArea">
	< youtube埋め込みソース >
</div>

【css】

.ytArea {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.ytArea iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

By womb