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


    I would love to hear any kind of feedbacks:) I had troubles changing color of little arrow icon at hover state. I think it should be feasible to do it in CSS, just my code didn't work. Does anyone know how to do that? Thank you so much!!

  • Submitted


    How was my work? Any feedback will be appreciated:) One thing I struggle the most is that SVG seems to unable to style like other HTML elements. For instance, the tooltips in the chart has a dark background with padding, but I couldn't just add background-color properties. In the end I manage to grouped rectangle and text together and attached the class on to grouped element. Do anyone have ideas? Is it okay to make text information such as tooltips with SVG?

    Thanks in advance and happy coding!

  • Submitted


    Any feedback would be appreciated:) For showing the error message, my approach is to have the element ready in HTML , then select the elements right after input fields to fill the content in the pre-existing elements:

    inputfield.nextElementSibling.innerHTML = fields[i].getAttribute("placeholder") + " cannot be empty";
    

    What do you guys think? I would love to see if there's a better way:)

  • Submitted


    Any feedback would be appreciated:)

    I would like to know: Q. How did everyone center the dollar sign? The pseudo class first-letter only works for block element, the property vertical-align only works for inline element. Therefore, I turn my span into inline-block so that both first-letter and vertical-align work.

  • Submitted


    Any feedback will be much appreciated :)

    How I did it:

    • I loop through all the radio button and pass the iterative object to query selector to dynamically get the option that user select.
    • Get user's input value when the submit button have been click on then show it in DOM.

    Question: I would like to try to go with object oriented way such as event target to select an element in the group so that I don't have to write loops all the time. If anyone know please tell me I'll be super thankful.