cssの文字スタイル

2544 ワード

css文字スタイル:

  • 追加:カラー:
  • 英文単語:red blue...
  • rgb:赤(255)緑(255)青(255)-rgb(255,255)
  • rgba(aは透明度0~1を表す:0.5は0.5と書くことができる0は省略できる)
  • .
    .font{
        width:300px;
        hight:100px;
        text-align:justify;   /*    :left right center(    )  justify(    ) */
        background-color:pink;
        font-family:"  ";   /*     :  --         */
        text-indent:32px;     /*    */
        font-weight:normal;   /*    :   :100~900     (      ):normal(  --400),bold(  --700),bolder(  ),lighter(  )*/  
        text-decoration:line-through;/*underline(     )  overline(   ) line-through(   )*/
        text-shadow:rgba(144,156,144,.5) 2px 5px 2px;/*          :           :x     (    )     :y          :    */
        
    }
    a{
        text-decoration:none; 	/*         */
    }