Tell us what’s happening:
I have set the border property to none within the .submit-btn selector as requested, but the system is still showing an error saying I need to set the border to none. I’ve checked for syntax errors and extra spaces, but everything looks correct."
.submit-btn {
cursor: pointer;
background-color: royalblue;
color: whitesmoke;
border: none;
border-radius: 6px;
padding: 12px 20px;
}
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* User Editable Region */
.submit-btn{cursor:pointer;
background-color:royalblue;
color:whitesmoke;
border:none;
border-radius:6px;
padding:12px 20px;}
/* User Editable Region */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36
Challenge Information:
Design a Parent Teacher Conference Form - Step 35