html - Single page: set elements at bottom of page in any browser or device -
i developing website have top menu , background image text on home page. covers whole screen. @ bottom of screen there have 3 blocks show @ bottom of screen or device. able to chrome firefox example blocks way far down @ ie same... want:
i doing applying following code on div containing 3 blocks:
position: relative; top: -150px;
but mentioned above in browser div shows low user won't see until scrolls...
any solutions here?
simple change:
position: fixed; bottom: 0;
better idea wrap inside <div class="bottom-stuff">
, give rules .bottom-stuff
.
Comments
Post a Comment