Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS3 Border Radius Issue ! ! !

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #35685
    MartyBoi
    Participant

    Hello and Greetings….

    I am trying to get the ( border-radius.htc ) to work, but it won’t. I wonder if it’s because I am using XAMPP as a testing server. Someone told me about CSS3Pie, but I don’t really know about that.

    Does anyone have any advice for this poor soul?

    Thank you….

    #92945
    Billy
    Participant

    if you want CSS3 border-radii, just use the CSS code, and you don’t need anything to test with other than a browser.

    .rounded-corners {
    -khtml-boder-radius: 10px;
    -moz-boder-radius: 10px;
    -o-boder-radius: 10px;
    -webkit-boder-radius: 10px;
    boder-radius: 10px;
    }
    #92951
    MartyBoi
    Participant

    cyneWATCH, I am using the code, and it does work in the major browsers. The issue is IE related…. IE8 and below…. It is these Browsers that don’t recognize CSS3 as of yet…..

    #92954
    Marie
    Member

    You could take look at http://www.modernizr.com.

    #92995
    TheDoc
    Member

    Also, I would say that older versions of IE not having rounded corners is okay. It’s a tiny difference in the larger scheme of things.

    #93007
    pravin1059
    Member

    hi dear, Please check the spelling for border
    where its not boder its “border”

    above that i have’nt seen khtml engine yet.

    try this code if it works

    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;

    Best way i follow is

    http://www.border-radius.com
    to generate border-radius code.

    Thanks

    #93008
    pravin1059
    Member

    ignore my comment

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.