Here is a snippet of code I am working with:
<p>
@Html.LabelFor(m => m.address, new { style="vertical-align: middle;" }) @Html.TextAreaFor(m => m.address, new { @class = "addition ", value = "",rows="4", required = "required" })
</p>
After implementing the code, this is the current result:
https://i.sstatic.net/WboYh.png
My goal is to have the label center-aligned. What modifications should be made to the code above in order to achieve this?