Latest solutions
My contact form solution with React.js and React-Hook-Forms
#react#sass/scss#typescript#vitePSubmitted 6 months ago
Latest comments
- @cocotiwakSubmitted over 1 year agoP@gumrahsindarPosted over 1 year ago
Hi 👋 A short time ago, I'd completed this challenge too with Tailwind CSS. I suggest that you should compare your solution with mine. It will be very useful. (If you don't know React, you can use browser dev tool). Happy coding 👊
0 - @Jey223Submitted over 1 year agoP@gumrahsindarPosted over 1 year ago
Hi there 👋 Users should be able to switch the button when they click outside the circle. You should consider fixing that.
Marked as helpful1 - @mbdelarosaSubmitted over 1 year agoP@gumrahsindarPosted over 1 year ago
The decision is completely up to you, but the main convention is to use
<header>
<main>
and<footer>
(if any). After that, you can organize your main area with different<section>
,<article>
or<aside>
tags. It both effects accessibility and SEO. Also I recommend to read this: Document and website structureMarked as helpful1 - @mbdelarosaSubmitted over 1 year agoP@gumrahsindarPosted over 1 year ago
Hi there 👋 You can use two sections. One for hero f.e.
<section id='hero'>
and one for cards f.e.<section id='cards'>
1 - @fisaavedraeSubmitted almost 2 years agoP@gumrahsindarPosted almost 2 years ago
Hi there 👋 To fix background image problem, both mobile and desktop version you can do these:
- Add to body
background-size: contain;
- Add to @media body
background-size: cover;
andheight: 100vh;
After that, you will see that bg image issue fixed. 👊
Marked as helpful0 - Add to body
- @tavishnewSubmitted almost 2 years agoP@gumrahsindarPosted almost 2 years ago
Hi 👋
- You should remove
background-color
property frommain
and add it tobody
. Thus, you can fill the light gray color to the whole page. - You should add
margin: 5rem auto
to body selector to ensure desired result. - You should use
grid
orflexbox
for smooth responsiveness instead of relative/absolute etc. (my suggestion is Grid, btw.)
Apart from these, it's looking good. Well done 👊
Marked as helpful0 - You should remove