2016-04-17

stylesheet:インライン要素の左右センタリング

参考:
http://ideahacker.net/2015/02/14/9779/


"text-align: center;"を指定する。
  1. <div class="center-H-inline outerbox-decoration">
  2. <span>
  3. skyblueのブロック要素(div要素)の中で
  4. インライン要素(img要素)を左右センタリング
  5. </span>
  6. <img src="image_s.jpg">
  7. </div>
  1. .center-H-inline{
  2.     text-align: center;
  3. }
  4. .outerbox-decoration{
  5.     margin: 0 auto;
  6.     width: 600px;
  7.     height: 300px;
  8.     background: skyblue;
  9. }

サンプル

以上