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]
*******************************************************************

Reply via email to