Hi. I don’t understand why my code doesn’t work, I did as requested, but there is an error somewhere
Now, use the attribute selector to style the submit button with a display of block , and a width of 60% .
Hint
You should use an attribute selector of input[type="submit"] to style the submit button.
input[type="submit"] {
display: block;
width: 60%;
}