1
2

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 3 years have passed since last update.

レスポンシブ設計 キホンの基本 part1~display:flex;

Last updated at Posted at 2020-01-23

CSSでレスポンシブなサイト作成のキホンについてやっていきますが、

その中でも超基本から。

このような構図があったとします。スクリーンショット 2020-01-24 1.02.02.png
※見にくいかもしれませんがcontainerは青色の部分を指しています。

この図のように、何もしないと要素は縦並びになってしましますよね。

レスポンシブにするためにはまず親要素のcontainerにdisplayをflexを設定します。

ちなみに、子要素の幅(width)は均等にするため、各子要素にflexを1に設定します。

style.css
 .container {
display: flex;
}
.boxA {
flex: 1;
}
boxB {
flex: 1;
}

そうすると、こうなります。スクリーンショット 2020-01-24 1.15.02.png

子要素が横並びになます。

デフォルトでは子要素の高さ(hieght)は同じで、幅(width)はコンテンツによって変わります。

今回の場合は、flex:1;を設定しているので、幅は均等です。

これがレスポンシブのキホンの基本です。

では次回は親要素のcontainerの幅を設定して、折り返す方法を書いていきたいと思います。

→ 続き: https://qiita.com/zakaryo/items/25bf9ee73cbf52167262

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?