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

2020/06/04 プログラミング(フロントエンド)学習5日目 メモ

Last updated at Posted at 2020-06-04

本日の学習範囲

ドットインストール

・はじめてのCSS #11〜#13
(学習時間:1時間)

CSS学習メモ

list-style-typeプロパティ

{list-style-type: ○○;}
リスト先頭のマーカー文字の種類を指定する
{list-style-type: none;}
でマーカーを削除できる

align-itemsプロパティ

{align-items: ○○;}
コンテナボックス内のアイテムの交差軸方向の揃え位置を指定する
{align-items: center;}
で交差軸方向において中央揃えにできる

主軸

コンテナボックス内のアイテムが並ぶ方向

交差軸

主軸と直角に交わる方向

text-alignプロパティ

{text-align: ○○;}
文章の揃え位置を指定する

1つ下の階層の子要素にのみ適用する方法

○○ □□ {}
ではなく
○○ > □□ {}
にする

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?