Well guys, I went to a job interview and they asked me to develop a simple form with label and input and a textarea, but this form has to be responsive, and work on all types of devices.
I started to do, follow the HTML code
HTML
.formContato textarea {
resize: none;
}
.formContato label {
vertical-align:top;
}
<div class="container">
<form class="formContato">
<div>
<label>Nome:</label>
<input type="text">
</div>
<div>
<label>E-mail:</label>
<input type="email">
</div>
<div>
<label>Mensagem:</label>
<textarea></textarea>
</div>
</form>
</div>
I'm having a hard time making you responsive, can anyone tell me how to do this? (Using only native CSS)