It seems that ASP NET MVC is having problem to display the correctly when I use TextAreaFor. Is anyone there having this problem?
This is how the browser is displaying it
Notice that the last TextArea is being displayed just fine.
This is how the code is my code
Notice that the TextArea below* the red retangular is being displayed just fine.
Answer
textarea
{
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.428571429;
color: #555555;
vertical-align: middle;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out
0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}