How do i setup my textboxes in a grid?

Tell us what’s happening:
Can anyone of you helpful souls coach me through how to setup my textboxes in a grid? so basically, one starting from the right, then the next one starting from the middle and repeat.

Your code so far

  <fieldset>
    <label>Which of the following traits would you say, that you take on while under the influence?</label>
    <div>
      <label><input type="checkbox"> Aggresive</label>
      <label><input type="checkbox"> Happy</label>
  </fieldset>  
input[type=checkbox]{
  width: 22px;
  vertical-align: middle;
  position: relative;
  bottom: 6px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Build a Survey Form

Link to the challenge:

you didnt target your input properly

you wrote input[type=checkbox]

if you want to target it properly remember there “”
so its input[type="checkbox"]

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.