LoginSignup
0
0

More than 1 year has passed since last update.

CSSでアニメーションお試し

Posted at

@keyframes
アニメーションの最初を0% 最後を100%で表現する
0%
100%

CSSでまず最初に覚えておきたい3つの要素
Webページの見栄えを整えるにあたり、CSSでは次の3つの要素を用います。

セレクタ – どのHTMLタグに対して見合えを調整するか
プロパティ – どういった内容のデザインを施すか
値 – プロパティはどの程度か

プロパティ 説明文
color 文字色を指定する
background 背景の指定をする
background-color 背景の色を指定する
font-family フォントの種類を指定する
font-weight フォントの太さを指定する
line-height 行の高さを指定する
text-align 行の揃え位置を指定する
width 幅を指定する
height 高さを指定する
margin マージンの指定をする
padding パディングの指定をする
border ボーダーの色や太さを指定する
position 要素の配置方法を指定する
display 要素の表示形式を指定する
float 左か右に寄せて配置する
z-index 要素の重なりの順序を指定する

.の場合はClass

AAAA


.test{
color:res;
}

の場合はID

TEST{

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