I want to have my label hidden when the input hasn't been typed in because I have placeholder text but once it is typed in I want it to appear by changing the opacity.
label {
display: block;
color:rgba(146,20,34,0);
text-align: left;
margin: 0;
padding-left: 12.2%;
font-size: 75%;
}
<label for="name">Full Name</label>
<input type="text" name="name" placeholder="Full Name" id="name" value="">
<br>
<label for="customerNum">Customer Number</label>
<input type="number" name="customerNum" placeholder="Customer Number" value="">