Я добавил в свою форму элемент «Select» HTML, но не могу увеличить его размер. Что я делаю не так?
.contact-modal-form {
height: 55%;
width: 60%;
display: flex;
justify-content: flex-end;
flex-direction: column;
}
.contact-modal-form input {
background-color: #dddddd;
padding: 5px;
}
.contact-modal-form select {
background-color: #dddddd;
height: 20px;
}
<div class="contact-modal">
<div class="contact-modal-separator">
<p> ~ Contact Me ~ </p>
</div>
<div class="contact-modal-title">
<h3>Take the first steps towards building a better future.</h3>
</div>
<div class="contact-modal-form">
<h5>Your Name</h5>
<input class="contact-modal-input" type="text" name="" value="">
<h5>Your Email</h5>
<input class="contact-modal-input" type="text" name="" value="">
<h5>Your Current Website</h5>
<input class="contact-modal-input" type="text" name="" value="">
<h5>Your Budget</h5>
<select class="contact-modal-input" name="">
<option value="">~ £1000</option>
<option value="">
< £2000</option>
<option value="">
< £3000</option>
<option value="">> £3000</option>
</select>
</div>
<div class="contact-button">
<button type="button" name="button">Submit</button>
</div>
</div>
Я пробовал изменить высоту, отступ, высоту строки - все виды. Но его просто нет. Похоже, это должно быть просто, но не могу понять.
Есть какие-нибудь подсказки? Спасибо!