I am trying to make a dropdown list that contains a placeholder. It doesn\'t seem to support placeholder=\"stuff\"
as other forms do. Is there a different way to ob
Create a label on top of the select
and apply CSS to place it on top
.hidden-label {
position: absolute;
margin-top: .34rem;
margin-left: .56rem;
font-style: italic;
pointer-events: none;
}
pointer-events: none
allows you to display the select when you click on the label, which is hidden when you select an option.
angular html css