LoginSignup
0
0

More than 5 years have passed since last update.

css文字数の節約

Posted at

読み込み時間は文字数に関連するのでminifyするに関わらず少ない方が良い。

wildcardでまとめる。

/*[for="flg-title"]
,[for="flg-mes"]
,[for="flg-hide"]
,[for="flg-auth"]
,[for="flg-list"]
,[for="flg-imgur"]{color:red}*/
[for*="flg-"]{color:red}
<label for="flg-title">title</label>
<label for="flg-mes">mes</label>
<label for="flg-hide">hide</label>
<label for="flg-auth">auth</label>
<label for="flg-list">list</label>
<label for="flg-imgur">imgur</label>

背景はcenter&coverが多い

*{
 font-family: 'Armata',meiryo,sans-serif;
 background-repeat:no-repeat;
 background-position:center;
 background-size:cover;
}
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