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/CSS 10/4 2日目

Posted at

今日はほんとに少しだけです。
残業終わりの学習はしんどい…

##CSS
 HTMLと組み合わせて使用する。
 Webページのスタイル(色・大きさ・配置など)を指定し、ページをデザインする言語
 カスケーディング・スタイル・シート

##CSSの記述
 基本書式

 セレクタ{
  プロパティ: 値;
 }

 言い換えると

 どこの{
  何を:どうする;
 }

 具体的には

 h1 {
  color: red;
 }

 h1要素(セレクタ)の色(プロパティ)を赤(値)にする
 と指定している

##文字の色を変える
●HTML
<h1>タイトルタイトル</h1>
<p>本文本文本文本文本文</p>

 h1{
  color: #ff0000;
 }
 p{
  color: #0000ff;
 }

h1は赤に、pは青になる

##CSSのコメント
/* */で囲うことにより、コメントは反映されない

/* コメントはHTMLに反映されない */

少しでも、ほんの少しでも向き合うことが大切。
また明日。

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?