我正在尝试更改剖面垂直标签标题的宽度。我的代码:
<div class="section-container vertical-tabs" data-section="vertical-tabs">
@foreach (var item in Model)
{
<section id ="@item.Id">
<p class="title" data-section-title><a href="#">@item.Description</a></p>
<div class="content" data-section-content>
<p>@(new HtmlString(item.IntroductoryText))</p>
</div>
</section>
}
结果:
标题宽度太小......有一些方法可以改变它吗?
答案 0 :(得分:0)
在你的CSS中:
.title{
width:100px; /*Or whatever you want it to be*/
}