2 comments

[ 4.0 ms ] story [ 8.1 ms ] thread
I'd also like to see commonly JSed scenarios supported in CSS like toggles, slides, solid positioning
You can center fixed positioned elements in CSS already like so:

  #mydiv {
    position: fixed;
    left: 50%;
    margin-left: (pixel offset relative from center of page)
  }