gpt4 book ai didi

css - 右拉后底部对齐

转载 作者:行者123 更新时间:2023-11-28 09:54:24 26 4
gpt4 key购买 nike

这是我的代码:

<div class="row">
<div class="col-xs-4">
<h2>Some header text</h2>
</div>
<div id="div1" class="col-xs-8">
<div class="pull-right">
@using (Html.BeginForm("ChangePageSizeAction", "myController"))
{
@Html.AntiForgeryToken()
<small>Page Size</small>
@Html.DropDownList("pageSize", null, htmlAttributes: new { @class = "form-control", onchange = "this.form.submit();" })
}
</div>
<div id="div2" class="pull-right" style="padding-right:10px">
@Html.PagedListPager(Model, page => Url.Action("Index", new { page }),
new PagedListRenderOptions()
{
MaximumPageNumbersToDisplay = 3,
DisplayPageCountAndCurrentLocation = true,
PageCountAndCurrentLocationFormat = "Page {0} of {1}",
})
</div>
</div>
</div>

这是输出: enter image description here

我想将 PagedListPager 对齐到 DropDownList 旁边的底部,如下所示: enter image description here

我尝试将 div1 样式设置为 position:relative 并将 div2 样式设置为 position:absolute; bottom:0 但没有用。

最佳答案

在 Morpheus 发表评论后,我在他的 jsfiddle 示例和我的示例中寻找差异,因此我在我的 css 类中发现了一个错误 (margin:0)。

所以,很抱歉问错了。

关于css - 右拉后底部对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24957549/

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