gpt4 book ai didi

html - 如何垂直对齐 @Html.TextAreaFor 中的文本

转载 作者:行者123 更新时间:2023-11-28 11:16:09 25 4
gpt4 key购买 nike

如何在@Html.TextAreaFor 中垂直居中文本?

这是html

<table class="width100percent padding0Margin0">
<tr class="height35">
<td class="width150">
Description
</td>
<td class="textValignMiddle">
@Html.TextAreaFor(m => m.Job.Description, new { @class = "width646 height25", @placeholder = "Enter " + @Model.GetNameJob + " description" })
</td>
</tr>
</table>

我已经尝试遵循 css,但我并不需要它

.textBottom{vertical-align: text-bottom;}
.textTop{vertical-align:text-top;}
.textVerticalAlignTop{vertical-align:top;}
.textBaseLine{vertical-align:baseline; }
.textValignBottom{vertical-align:bottom;}
.textValignMiddle {vertical-align: middle;}

这样做的唯一方法是添加 padding-top 然后缩小文本框的大小吗? What the issue is

最佳答案

请遵循此 css...

.textValignMiddle 
{
vertical-align:middle;
display: table-cell;
float: none;
}

关于html - 如何垂直对齐 @Html.TextAreaFor 中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21744622/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com