I ran into an issue while attempting to validate a CSS file using the W3C CSS validator. The error message I received stated that "Property flex-wrap- doesn't exist: wrap". This is the section of my CSS code that the validator identified as problematic:
.row {
width: 100%;
display: flex;
flex-wrap-: wrap;
}
Does anyone have any suggestions on how to resolve this error?
Thank you.