I wanted to know how to make text in my nav div the same 'colour' as the big background image behind the nav. I want it to show the part of the background image that it would be otherwise covering.
'color: transparent' and 'color: none' obviously don't work.
html {
background-image: url('backgroundd.jpg');
background-size: cover;
background-repeat: no-repeat;
}
#nav {
height: 100px;
background-color: #BC1A8E;
opacity: 0.8;
}
h1 {
color: white;
}
Thanks!