How can I be abke to solve this one?

You have to do two things.

  1. Select the checkboxes with css type selector
  2. Apply a css style that gives a top margin of 10px and a bottom margin of 15px.

The example is similar

[type='radio'] { <--selector
margin: 20px 0px 20px 0px;  <--apply a margin style
}
  1. Select radio buttons with css selector [type=‘radio’]
  2. Apply top margin 20px and bottom margin 20px
3 Likes