I hate browsers.
There is so many browsers out there, but for people that code, html/css etc for styling, everything comes out different, and with all the new browsers updating etc, people don’t keep them up to date, so you sometimes have to compensate for the people who are lazy and wont update, i don’t see why they don’t just update and keep it at the latest version, boggles the mind.
In this screencast, ive got the latest brorwsers, chrome and firefox, yet a simple hover effect wont work in firefox.. Hover on a div, any coders out there wanna tell me why?

OFF TOPIC:
It’s been a while since I last visited the site, and I must say I love the new look!
BACK ON TOPIC:
I’ve recently had some problems with the newer versions of FireFox myself, but so far my div containers have been changing colors when hovered over just fine.
In the video I saw that you had “yellow” typed in instead of a hex color code. I know it sounds kinda silly, but maybe the new FireFox only understands hex codes in divs or something like that.
I’ll try some experimenting and post back if I find anything else out.
Wish ya luck!
Thanks about the new look, appreciate it.
And about Firefox, its not just writing the color :P, hex or color works fine in firefox, its just on the rollover of an actual div is all. I have yet to google it tho, just thought it might bring a bit of conversation to the comments.
The reason your hover on DIV isn’t working in Firefox is because of Quirks Mode. Simply put because you are not stating the DOCTYPE in your code, Firefox is running in Quirks Mode, to fix this simply add to the top of your code. Of course writing a proper HTML file structure to begin with would have yielded your wanted results.
Ah rite, so no doctype, firefox doesnt spit some stuff out. hmm.
Good. Thanks. =D
Quirks mode exists because of those who don’t properly develop their html.
I see i see. Well this was just for quickness, so no need to add doctype, but sure. Ill know the future, thanks for posting that man, ment alot. I could have googled it, but what fun would that be :P