Float label works with placeholder="" but it don't works without placeholder attribute in an input element.
I found a workaround by styling an invisible placeholder if it is equal to # (like to disable href="#" links), by adding this code in input, select, textarea { } selector :
&[placeholder="#"]::placeholder {
color:transparent;
}