Afgeronde hoeken - CSS-trucs

Anonim

Standaard:

-moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; /* future proofing */ -khtml-border-radius: 10px; /* for old Konqueror browsers */

Individuele hoeken:

-moz-border-radius-topleft: 10px; -moz-border-radius-topright: 20px; -moz-border-radius-bottomright: 30px; -moz-border-radius-bottomleft: 0; -webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 20px; -webkit-border-bottom-right-radius: 30px; -webkit-border-bottom-left-radius: 0;

Steno:

-moz-border-radius: (linksboven) (rechtsboven) (rechtsonder) (linksonder)

-moz-border-radius: 10px 20px 30px 0;

Elliptische afronding (Firefox 3.5+):

-moz-border-radius-topleft: (horizontale straal) (verticale straal);

-moz-border-radius-topleft: 10px 40px;

Elliptische afrondings-steno (Firefox 3.5+):

-moz-border-radius: (horizontale straal) / (verticale straal);

-moz-border-radius: 10px / 40px;
-moz-border-radius: 10px 20px 30px 40px / 15px 30px 45px 60px;

Hierboven is hetzelfde als:

-moz-border-radius-topleft: 10px 15px; -moz-border-radius-topright: 20px 30px; -moz-border-radius-bottomright: 30px 45px; -moz-border-radius-bottomleft: 40px 60px;

WebKit elliptische afronding

Alle hoeken:

-webkit-border-radius: 36px 12px;

Alleen rechterhoeken:

-webkit-border-top-right-radius: 50px 30px; -webkit-border-bottom-right-radius: 50px 30px;