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.

【学習記録】HTML 10/5 3日目

Posted at

平日はなかなか厳しい。
負けずに続けます。

##CSSで文字の大きさを変える
 font-sizeプロパティを使う
 単位はpx
 
 h1{
  color: #ff000;
  font-size: 10px;
 }

##文字種類(フォント)
 font-familyプロパティを使う
 フォント名にスペースがある場合は、” “ で括ること

 h1{
  font-family: serif;
 }

 p{
  font-family: “Avenir Next”;
 }

##背景色を変える
 background-colorプロパティを使用
 色の指定方法はcolorプロパティと同じ

##要素のサイズを変える
 横幅はwidth、高さはheightプロパティを使う
 単位はpx

 h1{
  width: 500px;
  height: 80px;
  background-color: #ff000;
 }

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?