Sometimes it is necessary to set a transparent border, but there is no such color option, so RGBA is used. RGBA adds parameters to control alpha transparency based on RGB.
RGBA syntax example:
.div {background: rgba(200,200,200,0.5);}
When we need to set the transparency of the border, just fill in the last value between 0-1 as needed.