カテゴリー:
色
閲覧数:493 配信日:2016-05-03 09:16
3.R,G,B
「10進数 integer 0~255」×3
rgb(0,0,255);
p { color: rgb(0, 0, 255) } /* integer range 0 - 255 */
RGBそれぞれのinteger範囲
・0~255
/* RGB with alpha channel, added to CSS3 */
p { color: rgba(0, 0, 255, 0.5) } /* 0.5 opacity, semi-transparent */
4.R%,G%,B%
「10進数 number 0.0%~100.0%」×3
rgb(0%,0%,100%)
rgb(0%, 0%, 100%)
rgb(0.0%,0.0%,100.0%)
rgb(0.0%, 0.0%, 100.0%)
p { color: rgb(100%, 0%, 0%) } /* float range 0.0% - 100.0% */