html - Move div to bottom of parent -
so have html
<div class="search-form"> //other divs <input type="text" class="submit"/> </div>
the search-form height of page. want submit in search form, @ bottom of page. i've tried using position fixed, , set width 30%(like search form), when i'm on larger screen, submit button becomes larger search form.
how make submit button go bottom of search form?
apply following:
position:fixed; bottom:0px;
then make changes needed:
height: xpx; width...
etc
Comments
Post a Comment