HI Coders! I just finsihed 'FAQ accordion Card'. I used Javascript. DONT BOTHER THE DESIGN. I just wanted to practice my JS knowledge.
kindly gi through and give me feedback on issues of js functionality in js.
HI Coders! I just finsihed 'FAQ accordion Card'. I used Javascript. DONT BOTHER THE DESIGN. I just wanted to practice my JS knowledge.
kindly gi through and give me feedback on issues of js functionality in js.
Hi Guliye
I noticed a few things about your Javascript:
resetAccordion()
and a function called showAccordion()
..question
.Have a nice day. ✌
This is my first challenge in Frontend Mentor. Feedback is appreciated :)
Hey Rodrigo,
I've taken a quick look and I noticed the following:
width: 375px
I'd use width: 100%; max-width: 375px
as this helps with responsive.5px
to 15px
should be perfect.Your code looks clean. Have a nice day. 😊
I want to know the ways I can change and improve my code.
Hey Bryan
I've taken a look and I noticed the following things:
>
in your CSS. I would make the elements specific by utilizing the BEM method.Happy coding 😄
Please feel free to give feedbacks !
Hi Karim
I took a quick look and I have some suggestions:
<br>
to create space between elements. Instead, use margin
or padding
.<h1 style="font-size: 65px">2.7m+</h1>
. I would put all styling in your CSS file instead.#final
or #final2
is.You're on the right track. 😄
Woohoo! Another solution complete! 😄 This one was a bit intimidating, but once I sunk my teeth in, it was a blast! 😍 Please feel free to give me any suggestions, as I had difficulty with placement. I also feel like some of my logic could be a lot cleaner.
Three things I plan on implementing are:
Happy Coding! ✨🍃
Looks great! I love that you put the CSS files with the corresponding component -- before this I'd have it under ./src/css
.
The only thing I'd change is I'd use functional components.
Any feedback is welcomed!
I love your usage of variables in CSS. I also like that you've used prefixes where needed.
Some things I'd do differently are:
width: x%
to width: 100%; max-width: x%
, as this helps with responsive design.margin-top: -340px; margin-right: -340px;
on a class, which points to an issue in a part of the CSS.Overall it looks clean and structured. :)
I'd love to get some feedback on my code if anyone has any!
I love the fact that you used "preconnect" on the google font.
There's are a few things I'd do differently:
position: relative
and position: absolute
if I can.width: x%
to width: 100%; max-width: x%
as this helps with responsive design ("x" being the width you want).body
too tall -- it probably has something to do with your use of position
, so I'd use overflow: hidden
on the body to make it not scrollable.<link>
elements after the title and the script
elements at the bottom of your <body>
element..attribute
styling and move it to your stylesheet.transition: 0.3s ease all
.<img>
element in the <div class="container">
too.You're doing amazing so far. Keep it on! :)