Visual Design Push Elements

Can you help me with this challange?
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/push-elements-left-or-right-with-the-float-property

You’re just adding the float value.

#left {
    float:left;
    width: 50%;
  }
  #right {
    float:right;
    width: 40%;
  }

Float tells the element to either stay left or stay right of the surrounding elements.

1 Like

it worked you’re right thank you