CSS Wonderment (Vertical Centering with Divs)

Posted by Tim on June 13th, 2006

I recently had a need to do some vertical centering using divs and css exclusively.
I ran into a tutorial on how to accomplish this, which is both interesting and simple.
Read the rest of this entry »

CSS coolness

Posted by Tim on June 9th, 2005
input:focus, textarea:focus, select:focus, input:hover
  { background : #ffd;
    color : black; }
input[type="submit"]:hover { border-color: #900;
                             background: #ffd;
                             color: #600; }
input[type="submit"]:active { border-color: red;
                              color: red;
                              background: #ffc; }