Is there a color code for transparent in HTML?

前端 未结 9 577
抹茶落季
抹茶落季 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条回答
  •  野的像风
    2021-01-31 07:41

    Here, instead of making navigation bar transparent, remove any color attributes from the navigation bar to make the background visible.

    Strangely, I came across this thinking that I needed a transparent color, but all I needed is to remove the color attributes.

    .some-class{
        background-color: #fafafa; 
    }
    

    to

    .some-class{
    }
    

提交回复
热议问题