Actually im stuck here?

Continuing the discussion from Wrap the .canvas element in another div. Give that div the frame class:

The <div class="frame"></div> has to wrap the <div class="canvas"></div>. You’ve also made the mistake of trying to apply a second class to the second <div>, aside from the fact that it’s not required, the way you add multiple classes to an element, is by separating them with a space.

<div class="frame">
  <div class="canvas"></div>
</div>
1 Like

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