>>-6ren">
gpt4 book ai didi

.net - 在 asp.net 应用程序 View 中固定元素位置

转载 作者:太空宇宙 更新时间:2023-11-04 14:23:54 26 4
gpt4 key购买 nike

我有一个 asp.net 应用程序,其中存在样式问题。在 View 中我有这个片段:

 @if (Model[0] > 5)
{
@Html.ActionLink("<<<<", "Projects_Management", new { inc = Model[0] - 5 }, new {@class="previous"})
}

@if (Model[0] < 5 * Model[2])
{
@Html.ActionLink(">>>>", "Projects_Management", new { inc = Model[0] + 5 }, new {@class="nextIcon"})
}

CSS

.previous
{
margin-left:10px;
background: url('../images/previousIcon.png') no-repeat border-box right;
display: block;
width: 150px;
height: 50px;
text-indent: -9999px; /* hides the link text */
}
.nextIcon
{

margin-left:80%;
background: url('../images/nextIcon.png') no-repeat border-box right;
display: inline-block;
width: 150px;
height: 50px;
text-indent: -9999px; /* hides the link text */

}

但我有这个结果:

image

链接demo

这两个链接不在同一行。那么问题是什么:为什么他们不在同一条线上?我该如何修复我的代码?

最佳答案

.previous 类具有display: block 样式,将其替换为inline-block 就像.next

关于.net - 在 asp.net 应用程序 View 中固定元素位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19700944/

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