LoginSignup
1
1

More than 5 years have passed since last update.

CSS

Last updated at Posted at 2015-08-02

参照URL
https://www.codecademy.com/skills/make-a-website/topics/css-properties-box/css-margin-auto-try

例えば下記コードに「margin-top: 50px;」なんかを付け足すと、真ん中に固定+h1のtestの上にスペースが出来る。

Below margin-right: auto, add margin-left: auto in order to 「center the h1 element.」

.jumbotron h1 {
margin-right: auto;
margin-left: auto;
border: 3px solid #ffffff;
}

Bootstrap is a collection of prewritten CSS rules used to build web pages faster. Bootstrap provides styles out of the box for several common components on a web page, such as grid layouts, navigation, showcases, and much more.

ブートストラップはより高速なWebページを構築、使用するため事前に書いたCSSルールの集まりです。ブートストラップは、グリッドレイアウト、ナビゲーション、ショーケース、およびその他多くのWebページ上のいくつかの一般的な構成要素のためのスタイルを提供します。

1
1
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
1
1