html - Hide div off bottom of screen? -
i have div:
<div id="hide-me"> <p>some content</p> </div> how can use css position off bottom of screen, later plan animate bottom).
using position:absolute
#hide-me { position: absolute; bottom: -99999px; } <div id="hide-me"> <p>some content</p> </div>
Comments
Post a Comment