Stylesheet

提供: sha.ngri.la
2014年8月12日 (火) 12:28時点におけるTara.ttm (トーク | 投稿記録)による版
移動先: 案内検索

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

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

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

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

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