Почему не вытягивается на всю длину textarea?
0
Есть блок див с отступом справа 20%, в нем находится инпут текст и текстареа. Инпуту текст и текстареа выставлена width: 98% и 100% соответственно
.contacts {
text-align: left;
width: 500px;
padding: 0 0 0 5px;
float: left;
}
.send_send_contact {
margin-bottom: 4%;
margin-right: 20%;
}
.send_send_contact input[type="text"], textarea {
border: solid 1px #c3c3c3;
margin-bottom: 2%;
}
.send_send_contact input[type="text"] {
width: 98%;
}
.send_send_contact textarea {
width: 100%;
height: 200px;
}
.send_send_contact input[type="submit"] {
background-color: #7268ad;
padding: 3%;
color: white;
border-radius: 5px;
}
, но растягивается только инпут текст, текстареа все равно по длине немного меньше, как это исправить?