「Stylesheet」の版間の差分

提供: sha.ngri.la
移動先: 案内検索
(Youtube iframe のサイズを可変にする)
1行目: 1行目:
 
==Youtube iframe のサイズを可変にする==
 
==Youtube iframe のサイズを可変にする==
 
*[http://d.hatena.ne.jp/syan0/20121115/1352968404 HTMLに貼ったYoutube iframeを可変にする - しゃの]
 
*[http://d.hatena.ne.jp/syan0/20121115/1352968404 HTMLに貼ったYoutube iframeを可変にする - しゃの]
 +
==image のサイズをウインドウの大きさに合わせる==
 +
<pre>
 +
img {
 +
    max-width:100%;
 +
    width:auto; //IE用
 +
    height:auto;
 +
}
 +
</pre>

2014年8月8日 (金) 01:59時点における版

Youtube iframe のサイズを可変にする

image のサイズをウインドウの大きさに合わせる

img {
    max-width:100%;
    width:auto; //IE用
    height:auto;
}