IE7 Bug
Today I found a strange bug in IE7. If you have an unordered list, and you specifically give a height to each li element, the numbers reset themselves so each number ends up being "1"! Try this out!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Test</title> <style type="text/css"> ol li {height:40px;} </style> </head> <body> <ol> <li>This</li> <li>is</li> <li>just</li> <li>a</li> <li>test</li> </ol> </body>
</html>