mirror of
https://github.com/danog/sass-site.git
synced 2024-12-11 08:59:51 +01:00
6b8f5afd7a
Opera never prefixed border-radius
9 lines
129 B
Markdown
9 lines
129 B
Markdown
```css
|
|
.box {
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
-ms-border-radius: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
```
|