What CSS Needs: Granular Positioning
coderwall.com
What CSS Needs: Granular Positioning
1–3 of 3 posts
Re: What CSS Needs: Granular Positioning
#2I'd also like to see commonly JSed scenarios supported in CSS like toggles, slides, solid positioning
Re: What CSS Needs: Granular Positioning
#3You can center fixed positioned elements in CSS already like so:
#mydiv {
position: fixed;
left: 50%;
margin-left: (pixel offset relative from center of page)
}