Skip to content

Commit

Permalink
docs: remove prefixed border-radius related properties (#40066)
Browse files Browse the repository at this point in the history
Angular has stopped to support browser that requires these CSS properties.
All supported browsers support standard CSS properties:
* border-radius
* border-bottom-left-radius
* border-bottom-right-radius

PR Close #40066
  • Loading branch information
AlexElin authored and alxhub committed Dec 10, 2020
1 parent fea9505 commit 91fb830
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ table {
margin:20px;
border:#ccc 1px solid;

-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
}
table th {
Expand Down Expand Up @@ -46,12 +44,8 @@ table tr:last-child td {
border-bottom:0;
}
table tr:last-child td:first-child {
-moz-border-radius-bottomleft:3px;
-webkit-border-bottom-left-radius:3px;
border-bottom-left-radius:3px;
}
table tr:last-child td:last-child {
-moz-border-radius-bottomright:3px;
-webkit-border-bottom-right-radius:3px;
border-bottom-right-radius:3px;
}

0 comments on commit 91fb830

Please sign in to comment.