LoginSignup
0
0

More than 5 years have passed since last update.

css div を center に配置する方法

Last updated at Posted at 2018-06-23

検索すると色々でるが、自分が今、これだと思ったのは以下の通り。

test.html
<div style="position: relative;">
 <div style="width:50%;margin: 30px auto;">
  ああああ。
 </div>
</div>

bootstrapを使っている場合

まずは、bootstrapのグリッドシステムを理解する
http://websae.net/twitter-bootstrap-grid-system-21060224/

<div class="col-sm-3">
</div>
<div class="col-md-6">
真ん中に来させたい文。
</div>

このようにするだけで、とりあえず真ん中にくるので、手っ取り早い。
自分の場合、bootstrapはグリッドシステムしか意識して使っていない感じ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0