Having trouble with my floating labels - any advice?
https://i.sstatic.net/fk0CG.png
Here is the code snippet:
<div class="form-floating mb-3">
<input type="text" class="form-control" autofocus id="txtNome" placeholder=" ">
<label for="txtNome">Full Name</label>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" autofocus id="txtEmail"
placeholder=" ">
<label for="txtEmail">E-mail</label>
</div>
<div class="form-floating mb-3">
<textarea class="form-control" id="txtMensagem" placeholder=" "
style="height: 200px;"></textarea>
<label for="txtMensagem">Message</label>
</div>