「Stylesheet」の版間の差分

提供: sha.ngri.la
移動先: 案内検索
9行目: 9行目:
 
}
 
}
 
</pre>
 
</pre>
 
+
==preタグにスクロールバーをつける==
 +
<pre>
 +
pre {
 +
  overflow-x: auto;
 +
}
 +
</pre>
 +
<pre>
 +
pre {
 +
  overflow: auto;
 +
}
 +
</pre>
  
 
[[Category:stylesheet]]
 
[[Category:stylesheet]]

2014年8月12日 (火) 12:24時点における版

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

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

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

preタグにスクロールバーをつける

pre {
  overflow-x: auto;
}
pre {
  overflow: auto;
}