Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    What was the most challenging part of this exercise for you?

  • Submitted


    In this exercise, I used two radio buttons. I would love to hear what solutions you came up with for building out the toggle, and the pros and cons.

    Pros

    1. The label can be clicked to change the selection
    2. No animations required to reflect the new state
    3. More radios can be added

    Cons

    1. Difficult to style
    2. Difficult to animate the transition
  • Submitted


    What are your opinions on adding margin to elements of a component. For example, lets say you have a card with an image, title (h1...etc), text, and button in a column. '''HTML

    <article> <img /> <h1>Title</h1> <p>Text</p> <button>Call to Action</button> </article> '''

    Would it be a good idea to remove the margin from the h1and paragraph, wrap the elements in a div, and set the margin on the div? '''CSS .card-title h1 { margin: 0; } .card-title{ margin: 1.5rem 0 } ''' '''HTML

    <div class="card-title"> <h1>Title</h1> </div> '''
  • Submitted


    How many newbie challenges are you completing or did complete before trying junior challenges?

  • Submitted


    If you used the <picture> element, did it render as content along with the image in your browser. How did you overcome the obstacle it created?

    If the element did not render, what browser were you using?