Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

Keep getting error saying outline:none; is missing. How do i fix this?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">    <title>Job Application Form</title>
</head>
<body>
<div class="container">
    <form>
        <label for="name">First Name: </label>
        <input type="text" id="name" required/>


        <label for="email">Email: </label>
        <input type="email" id="email" required/>

<p>Please select the job you want to apply for.</p>
<label for="position">Position: </label>
    <select id="position">
            <option value="" placeholder="choose" id="position"></option>
            <option value="councilor" id="position">
                <label for="councilor" id="position">
                Student Councilor</label>
            </option>
            <option value="teacher" id="position">
                <label for="teacher" id="position">Teacher</label>
            </option>
        </select>
        
        <section class="radio-group">
            <input type="radio" name="availability" id="availability"/>
            <label for="availability">Available</label>

            <input type="radio" name="availability" id="availability"/>
            <label for="availability" id="availability">Unavailable</label>
        </section>

            <label for="message" id="message">Insert Notes: </label>
            <textarea id="message">
                
                </textarea>
            <button type="submit" value="Submit"/>Submit
        </form>
        
    </div>
</body>
</html>
/* file: styles.css */
body{
  background-color: lavender;
}

input:focus, textarea:focus{
  border-color: pink;
  outline: none;
}


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.6 Safari/605.1.15

Challenge Information:

Build a Job Application Form - Build a Job Application Form

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-job-application-form/66faac4139dbbd5dd632c860.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @chaosAngel666,

I am not seeing that error when I check your code. Tests #13-20 are failing though since you need to finish implementing the user stories.

Happy coding

yes that’s why i’m wondering why i keep getting the error saying “outline: none; is missing”… Any idea on how to fix this bug? bc it’s def a bug :stuck_out_tongue:

are you using freeCodeCamp app? I have already heard of issues with outline with the app

can you report a bug about that using the report from inside the app if that’s the case?

Hi, I am using the website in safari browser, didn’t know there was an app :stuck_out_tongue: is it possible to report bug anyways? Havent yet seen a button for it but might overlook it as this is sort of stressing me out more than i expected :stuck_out_tongue:

Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

I have downloaded a different browser and it works again, thanks!