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

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -