导航栏背景不是透明的,而是背景的颜色完全
navbar background isnt trasnparent but instead the color of the backgrounds completely
因此,在对我的网站进行编码时,我遇到了一个问题,当我尝试使背景透明但它显示为实心条时,是否可以将其嵌入到我的其他代码中?
.navbar {
position: fixed;
top: 0;
right: 5%;
z-index: 1;
display: flex;
background: transparent;}
the issue
我建议使用不透明度 使背景变得透明!
只需在 W3schools 上阅读此 link,您就会了解透明度和不透明度的概念。
因此,在对我的网站进行编码时,我遇到了一个问题,当我尝试使背景透明但它显示为实心条时,是否可以将其嵌入到我的其他代码中?
.navbar {
position: fixed;
top: 0;
right: 5%;
z-index: 1;
display: flex;
background: transparent;}
the issue
我建议使用不透明度 使背景变得透明! 只需在 W3schools 上阅读此 link,您就会了解透明度和不透明度的概念。