convert to 3-digit hex color code

后端 未结 4 575
[愿得一人]
[愿得一人] 2020-12-19 00:08

I\'ve been using 3-digit hex color values in CSS for a long time: #fff, #999, #069, etc. I can see how the repeating letters/numbers a

4条回答
  •  [愿得一人]
    2020-12-19 00:46

    3 digit CSS code is short for 6 digits": #06a; is #0066aa;
    Each two digits represent a number from 0 to 255.
    Converting these values to hex and back is all you need.

提交回复
热议问题