Hi Lars,

I ran the css validator on the page you linked to. It shows a number of errors. The specific comments of concern are:

Property -moz-border-radius doesn't exist :  15px
Property -webkit-border-radius doesn't exist :  15px
Property border-radius doesn't exist in CSS level 2.1 but exists in [css3] : 15px

No ideas to offer, but it's a start.

I confirm that Safari 3.1 does not show rounded corners, while FF did.

Chief Technology Officer
273 Azalea Road, Bldg. 2, Suite 300
Mobile, Alabama, USA, 36609
Tel. +1-251-404-4111
Fax +1-251-344-9545
[EMAIL PROTECTED]



On Mar 19, 2008, at 12:09 PM, Keryx Web wrote:

Now that safari 3.1 is out I was reminded of something I had intended to do for a long time. I took this:

fieldset.inforuta {
   padding: 20px;
   font-size: 90%;
    -moz-border-radius: 15px;
}

And turned it into this:

fieldset.inforuta {
   padding: 20px;
   font-size: 90%;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

I.e. I added support for webkit and any future browser that might implement CSS 3 rounded corners.

However Safari 3.1 fails at showing any rounded corners at http://keryx.se/

It should be in the two fieldsets in the right column. Anyone who has a clue why? I have tested this on both Safari 3.1 on Win XP and Mac. FFox handles the code as both in 2.0.12 and the nightly build from yesterday.

I do send my page as application/xhtm+xml to browsers that claim to support that MIME-type (mostly for pedagogic reasons, but that's another story). Could this be the cause?


Lars Gunther


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************




*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to