将文本包裹在表Textbox元素上



我想将文本包装在文本框上,文本框的顶部

在此处输入图像描述

<!-- ==================== Travel Details Field -->
<tr class="Field CommentRow">
<td class="LabelForm">Travel Details</td>
<td class="Value">
   <%= Html.TextArea("TravelDetails", H(genericModel.Comment), 12, 60, new { @class = "BodyWatermark", style = "width:360px" })%>
       <span class="More")>We are traveling to Naples on the 15th or May, followed by London starting on May 23rd</span>
</td>
</tr>

这样的?

<!-- ==================== Travel Details Field -->
<tr class="Field CommentRow">
<td class="LabelForm">Travel Details</td>
<form>
  <input type="text" name="boxy" style="width: 300px;height: 200px;"><br>
   
</form>
<td class="Value">
   <Html.TextArea("TravelDetails", H(genericModel.Comment), 12, 60, new { @class = "BodyWatermark", style = "width:360px" })%>
       <span class="More")>We are traveling to Naples on the 15th or May, followed by London starting on May 23rd</span>
</td>
</tr>

最新更新