Navigation | Archive » 2009 » December

December 17, 2009

New Tricks

I've been a coldfusion developer for over 9 years now, and tinkered with web design for at least 12. It's pretty rare for me to find something I've never used before and didn't know existed in HTML… but today, I did. The OPTGROUP tag is how you make non-selectable headings in select lists. I guess [...]

Filed by JC at December 17th, 2009 under Random
No comments on this post yet

Proper Ordered List Hierarchy

In case I ever need it again, this is the CSS to force a "proper" ordered list hierarchy all the way to 6 layers deep. (pro tip – if it's 6 layers deep, you're doing something wrong) <style type="text/css">   OL { list-style-type:upper-roman }   OL OL { list-style-type:upper-alpha }   OL OL OL { [...]

Filed by JC at December 17th, 2009 under ColdFusion, Random
No comments on this post yet