0
我有一個標誌是在導航欄內,我有它旁邊的文字。我想垂直居中放置文字,使其位於徽標的中間。當我嘗試調整a.navbar-brand
時,一切都在移動。我是否需要將@Html.ActionLink
代碼與單獨的span
或div
標記環繞在一起,然後在css中引用它?居中文本旁邊的圖像引導navbar
<div class="navbar-header">
<a class="navbar-brand">
<img alt="tribal_logo" src="~/Content/Images/tribal_logo2.gif" />
</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
@Html.ActionLink("Fishing and Hunting License Program", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
</div>
檢查此[垂直對齊旁邊的文字到圖像?](https://stackoverflow.com/questions/ 489340/vertical-align-text-next-an-image)這會幫助你。 –