我使用在 MVC5 中创建的以下视图代码,我想将按钮样式更改为类似于论坛按钮(例如,在此堆栈论坛中提问按钮,添加按钮框架颜色等),我应该怎么做?目前它只是文本,当你用鼠标悬停它时,你会看到它下面的线......
<p>
@Html.ActionLink("Create New Item", "Create")
</p>
我使用在 MVC5 中创建的以下视图代码,我想将按钮样式更改为类似于论坛按钮(例如,在此堆栈论坛中提问按钮,添加按钮框架颜色等),我应该怎么做?目前它只是文本,当你用鼠标悬停它时,你会看到它下面的线......
<p>
@Html.ActionLink("Create New Item", "Create")
</p>
您只需要 css 来设置按钮样式。
<p>
@Html.ActionLink("Create New Item", "Create",
null, htmlAttributes: new { @class = "mybtn"})
</p>
<style type="text/css">
a.mybtn {
background: #777;
color: #fff;
display: inline-block;
padding: 6px 12px 6px 12px;
text-decoration: none;
}
</style>
使用重载
@Html.ActionLink("linktext", "action", "controller", routeValues: new { }, htmlAttributes: new { @class="" })
然后提供一个 CSS 类。
用这个:
<button type="submit" class="btn btn-labeled btn-info" onclick="location.href='@Url.Action(" Details ", "Movies
",new { id = item.Id})'" data-toggle="modal tooltip" data-target="" title="Details">
<span class="btn-label">
<i class="glyphicon glyphicon-comment"></i>
</span>
Details