Category Archives: Browsers

Target Firefox, IE 6, IE 7 and IE 8 Separately

Here’s how to target all of these browsers each with their own styles. Continue reading

No list bullets in IE6

Apparently, IE6 doesn’t display bullets on a list that’s floated, or display inline. The solution for the floating problem: wrap the list in a div and float the div. Digg this postRecommend on FacebookTumblr itBookmark in BrowserTell a friend

IE6 Duplicate Content Bug

When you have text mysteriously repeating after a series of floated elements in Internet Exploder 6, the general consensus is that it is due to comments being sandwiched between floats, as explained here: http://www.positioniseverything.net/explorer/dup-characters.html However, when I faced this problem … Continue reading

Why is background 1 pixel off in Firefox?

Okay, this one really stumped me. My non-repeating, centered content background was shifted one pixel to the left in Firefox, but looked correct in Safari and Internet Explorer. Something that looks right in Safari (the most compliant browser) and Internet … Continue reading

Textarea Scrolling in Firefox

1. Firefox will put a vertical AND horizontal scrollbar on a textarea by default. To get rid of the horizontal scrolling, use this: overflow-y: scroll; (or overflow-y: auto if you don’t want your scrollbar to appear if it’s not needed) … Continue reading