Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有这个html
<div class="search-form"> //other divs <input type="text" class="submit"/> </div>
搜索表单是页面的高度。我希望提交在搜索表单中,但在页面底部。我试过使用固定位置,并将宽度设置为 30%(如搜索表单),但是当我在更大的屏幕上时,提交按钮变得比搜索表单大。
如何使提交按钮转到搜索表单的底部?
应用以下内容:
position:fixed; bottom:0px;
然后根据需要进行更改:
height: Xpx; width...
ETC
如果表单具有绝对、相对(通常的选择)或固定位置,那么您应该能够将输入设置为绝对位置并将其底部坐标设置为 0。
固定位置是你想要的吗?窗口底部还是表单底部?