I am currently working on a page with ellipsis in the bottom left. While Chrome, FF4, and webkit nightly display them nicely, FF3 shows rounded tops and bottoms with straight sides, and Safari 5 displays them as rectangular. Is there a way to make Safari 5 and FF3 cooperate?
Update:
I found that setting the radius using the following code makes Safari 5 look like FF3, with rounded tops and bottoms and straight sides.
-moz-border-radius: 1000px;
-webkit-border-radius: 1000px;
The remaining issue is that the ellipses are not elliptical in FF3 or Safari 5.
Update2:
It appears that FF3 and Safari 5 have issues with borders and how they are calculated, and I have not yet found a solution for this problem.