Opacity automatically apply on legend text? How to remove opacity from it?
fieldset {
  background-color: black;
  opacity: .2; 
               /* this automatically apply opacity in legend text.. why? */
}
legend {
  color: green;
  font-size: 20px;
}<form>
  <fieldset>
    <legend>My Form</legend>
  </fieldset>
</form> 
     
     
    