Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この ARGB hex が機能しないのはなぜですか?
<td style="background-color: #FFFF9980">
rgba(255,153,128,1.0)16 進値の代わりに使用します (ただし、それが実際に ARGB の場合は in と同じ#ff9980ですRGB- RGBA を意味する場合は が必要ですrgba(255,255,153,0.5))。
rgba(255,153,128,1.0)
#ff9980
RGB
rgba(255,255,153,0.5)
CSS3仕様は次のように述べています:
RGB 値とは異なり、RGBA 値には 16 進表記がありません。
rgba(255,153,128,1.0)したがって、上記を使用する必要があります。