Suggest an editImprove this articleRefine the answer for “What does the value transparent do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**`transparent`** makes a color (of text, background, and so on) fully transparent, equivalent to `rgba(0,0,0,0)`. **Key point:** the element still keeps its place in the document flow and can have a background or borders, the color itself just becomes invisible.Shown above the full answer for quick recall.Answer (EN)Image`transparent` makes a color fully transparent. The element keeps its place in the flow and can have a background or borders, but the color itself (text, background, etc.) becomes invisible: ```css color: transparent; background: transparent; ``` This is equivalent to `rgba(0,0,0,0)`, there is no visibility, but the element remains.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.