質問する
392 次
2 に答える
2
すべてのスタイリングをクラスに入れ、クラスを ActionLink に渡すことができます
@Html.ActionLink("דף הבית", "Index", "Home", null, new { id = "something", @class="something you give to anchor" }
例えば
a,.anchorstyle{
text-decoration:none;
color:blue;
}
<a href="#">hello </a>
また
<a class="anchorstyle" href="#">hello </a>
または、このクラスを ActionLink に追加します
@Html.ActionLink("דף הבית", "Index", "Home", null, new { id = "something", @class="anchorstyle" }
于 2013-03-07T11:07:21.447 に答える
1
@Html.ActionLink("דף הבית", "Index", "Home", null, new { id = "something", @class="someCssClass" }
また
@Html.ActionLink("דף הבית", "Index", "Home", null, new { id = "something", @class="someCssClass", @style="color:white;" }
于 2013-03-07T11:07:09.550 に答える