2
How can I center input/textareas (but I want the label to stay on the left)?
form {
width: 700px;
color: red;
}
form textarea,input {
display: block;
margin: 0 0 30px 0;
}
<form>
<input type="submit" name="publicar"/>
<input type="text" name="title" id="title" placeholder="Título"/>
<label for="info">Seu Texto</label>
<textarea id="info"></textarea>
</form>