'How to stop this fieldset from overflowing its container?
I have a css&html only form with multiple fieldsets on codepen, however only this fieldset with the <textarea>
is overflowing on resizing the window. I tried setting a resize: none;
and a max-width of 95%, but nothing seems to be working.
Here is the HTML:
<fieldset>
<legend>Essay Section</legend>
<div>
<label for="essay_reasons">In 50 words or more explain why you want to apply for this course</label>
</div>
<div>
<textarea id="essay_reasons" name="essay_reasons" rows="4" cols="55" placeholder="Enter text here">
</textarea>
</div>
</fieldset>
css:
/*. generic selectors. */
.container {
width: 85%;
margin: 0 auto;
max-with: 1184px;
}
div {
margin-top: 1.5em;
}
/*. specific design. */
form {
border-radius: 10px;
border: 1px solid #777;
padding: 1em 3em;
margin-top: 10em;
background-color: #fff;
}
input:focus {
border: 2px solid red;
}
fieldset {
margin: 1em auto;
border: 0.5px solid #777;
}
textarea {
resize: none;
max-width: 95%;
}
Solution 1:[1]
Styling a textarea with the attributes cols="value"
and rows="value"
you will achieve a consistent styling among different browsers. But you won't have as much control compared to styling with only CSS.
I would remove your textarea cols="55"
attribute and set the width width: 100%
in your stylesheet:
textarea {
resize: none;
width: 100%;
}
<textarea id="essay_reasons" name="essay_reasons" rows="4" placeholder="Enter text here" />
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |