Is there a color code for transparent in HTML?

前端 未结 9 813
抹茶落季
抹茶落季 2021-01-31 07:25

I\'m building a new website, and I\'m looking for a transparent navigation bar so the background is visible.

9条回答
  •  Happy的楠姐
    2021-01-31 07:57

    You can specify value to background-color using rgba(), as:

    .style{
            background-color: rgba(100, 100, 100, 0.5);
    }
    

    0.5 is the transparency value

    0.5 is more like semi-transparent, changing the value from 0.5 to 0 gave me true transparency.

提交回复
热议问题