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 1 year has passed since last update.

CSSのまとめ

Last updated at Posted at 2021-11-21

まとめページに戻る
まとめA~M

Auraでの書き方

全ての要素で反映される

.THIS {
	font-size: 12pt;
}

で反映される ただし、意図せぬところでH1が使われている(デフォルトで使われている)場合にも反映されるので注意

image.png

.THIS H1 {
    font-size: 18pt;
    color: red;
}

classを使用した方が副作用はないかもしれない
.THIS .H1 {
    font-size: 18pt;
    color: red;
}
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?