Skip to content

Commit 9053795

Browse files
authored
[css-forms-1] Add missing content property to radio checkmark (w3c#13357)
Without this the radio's checkmark is never generated.
1 parent 11a6be8 commit 9053795

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

css-forms-1/Overview.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,6 @@ input[type=radio] {
884884
display: inline-flex;
885885
align-items: center;
886886
justify-content: center;
887-
content: '';
888887
}
889888

890889
input[type=radio] {
@@ -896,6 +895,7 @@ input[type=checkbox]:not([switch]):checked::checkmark {
896895
}
897896
898897
input[type=radio]:checked::checkmark {
898+
content: '';
899899
background-color: currentColor;
900900
display: inline-block;
901901
border-radius: inherit;

0 commit comments

Comments
 (0)