0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Bootstrap で 要素 の テキスト を 中央 に 配置する 方法

Last updated at Posted at 2019-07-19

目的

Bootstrapを用いてCSSで設定する所のtext-aline: center;と同じ表示にする方法をまとめる

前提条件

  • Bootstrapの設定が読み込まれるようになっている
  • Bootstrapのテンプレートを使用してHTMLファイルをコーディングしている。
    ※Bootstrapの設定を反映させるためのテンプレートはこちらのスターターテンプレート内のコードをコピーする。

押さはえるポイント

  • Bootstrapで既に定義された内容を設定したい時はHTMLファイルのクラス名に定義名を記載する。
  • テキストを要素の中央に配置するにはクラス名にtext-centerを追加する。
  • 右寄り、左寄りの設定も可能

書き方の例

  • h1要素のテキストを中央に配置する。
  • 下記にHTMLファイルの内容を記載する。
<h1 class="text-center">おはようございます。</h1>
  • h1要素のテキストを左寄りに配置する。
  • 下記にHTMLファイルの内容を記載する。
<h1 class="text-left">おはようございます。</h1>
  • h1要素のテキストを右寄りに配置する。
  • 下記にHTMLファイルの内容を記載する。
<h1 class="text-right">おはようございます。</h1>
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?