I have the following code in CSS, which I am trying to validate with CSS Level 3, however I am getting the following error:
Parse Error [empty string]
on the line:
input[type="text"], select, textarea
The full code is
input[type=text], select, textarea {
width: 90%; /* Full width */
padding: 7px; /* Some padding */
border: 1px solid #ccc; /* Gray border */
border-radius: 4px; /* Rounded borders */
box-sizing: border-box; /* Make sure that padding and width stays in place */
margin-top: 6px; /* Add a top margin */
margin-bottom: 16px; /* Bottom margin */
resize: vertical
Any suggestions? It is from a form I have made in HTML.
edit: Removing the border sections like people have suggested from other solutions does not solve the problem.