Latest solutions
Pod request access landing - with TypeScript
#accessibility#typescript#reactSubmitted about 2 years ago
Latest comments
- @BernardusPHSubmitted almost 2 years ago#axios#framer-motion#react#typescript#accessibility@bilalturkmenPosted almost 2 years ago1
- @adonmez04Submitted about 2 years ago@bilalturkmenPosted about 2 years ago
Hi Alper nice work.
positioning in css sometimes can be confusing. I also experience this situation often.
We need to add a
relative
container before the absolute position. actually you already added.so you can uncomment again this div
<div class="hero__img-area"> <picture> <source media="(min-width: 62.5em)" srcset="./assets/img/desktop/image-hero-desktop.png" /> <source media="(min-width: 37.5em)" srcset="./assets/img/tablet/image-hero-tablet.png" /> <source media="(min-width: 31.25em)" srcset="./assets/img/mobile/image-hero-mobile.png" /> <img src="./assets/img/mobile/image-hero-mobile.png" alt="The hero image" class="hero__img" /> </picture> </div>
and then define the following css properties
.hero__img-area{ position:relative } .hero__img{ position: absolute; top: -18.25rem; left: 0.1875rem; }
delete this
update your .wrapper class
min-width: 100%
and .container classwidth:70em
then set the "top" and "left" positions in the .hero__img class for your media queries.
Secondly... I think this accessibility message pops up because you used
nav
tag twice. if you use aria-label for these tags, i think it will fix the problem.example:
<nav aria-label="header menu"> ... </nav> <nav aria-label="sub menu"> ... </nav>
Marked as helpful1 - @MelvinAguilarSubmitted about 2 years ago
Fylo dark theme landing page (React JS + Tailwind CSS + Framer Motion)
#accessibility#framer-motion#lighthouse#react#tailwind-css@bilalturkmenPosted about 2 years agonice and meticulous work.
Custom scrollbar is a nice detail. I liked framer motion, want to try too 🙂
1 - @Cor4zonSubmitted about 2 years ago@bilalturkmenPosted about 2 years ago
Hi,
- for the first question, it seems ok.
but if you want use less css code, you can check this example
-
I don't know much about styled css, but i find it more correct to use external css, for file size and readability by others. but it seems be comfortable to use for small applications
-
maybe you should try css module. there is a comparison
Marked as helpful0 - @adonmez04Submitted about 2 years ago@bilalturkmenPosted about 2 years ago
Hi Alper, nice work.
It might be better, adding this background color to the
body
selector, insteadsection
. White space appears around the edges of the page in full hd resolution.Happy Coding 🙂
Marked as helpful0 - @visionedSubmitted about 2 years ago@bilalturkmenPosted about 2 years ago
it makes me want to learn typescript 🥳
this style blew my mind 👍
1