Css Responsiveness

Am having issues with pure css responsiveness. But I can use it for all things. Should I leave it and focus on tailwind responsiveness because I am good there too
36 Replies
ἔρως
ἔρως3mo ago
tailwind is a css library and as all libraries, it hides a lot of details for simplicity tailwind's responsiveness is pretty close to bootstrap, but doing it pure css is different it is a decent way to get started, but the amount of detail it hides is pretty substantial
CHIDEX
CHIDEXOP3mo ago
So I have to learn it well before moving to framework
ἔρως
ἔρως3mo ago
that is what i recommend, yes but tailwind isn't a framework
13eck
13eck3mo ago
If you're having issues ith reponsive CSS Kevin has the perfect free course for you: https://courses.kevinpowell.co/conquering-responsive-layouts
Kevin Powell
Conquering Responsive Layouts
Are you ready to take the challenge and finally figure out responsive layouts?  Click the button below and jump in!
13eck
13eck3mo ago
And I would highly recommend not learning Tailwind until you understand CSS. You won't know what "problems" Tailwind is "solving" if you odn't know how CSS works. And I use quotes because really the "problem" that Tailwind "solves" is that people don't want to learn CSS. It's "solving" laziness 🤷
CHIDEX
CHIDEXOP3mo ago
Thanks you all for your concern Am very happy for joining this community
ἔρως
ἔρως3mo ago
you're welcome
CHIDEX
CHIDEXOP3mo ago
So when am done with css because I will finish it next week Should I enter css framework or JavaScript
13eck
13eck3mo ago
Do you want to know a secret? You’re never done with CSS.
CHIDEX
CHIDEXOP3mo ago
Jesus :raisedbrow: So I have to continue learning it
13eck
13eck3mo ago
Web tech is always changing and growing. We’re getting new functionality every year
CHIDEX
CHIDEXOP3mo ago
The worst part is that sass is still waiting for me
CHIDEX
CHIDEXOP3mo ago
No description
CHIDEX
CHIDEXOP3mo ago
My work yesterday 🥺
ἔρως
ἔρως3mo ago
sass is just css, but with extra tools
CHIDEX
CHIDEXOP3mo ago
Yes According to what I studied yesterday Tech is big oooo
ἔρως
ἔρως3mo ago
you should focus on pure css for now
CHIDEX
CHIDEXOP3mo ago
Thank you sir Just one more question ❓ Should l learn JavaScript first before css framework
Ganesh
Ganesh3mo ago
If you're gonna do interactive frontend development javascript is absolutely needed. It's not directly related to css framework/tools but you should work on getting your html css and javascript fundamentals before jumping into tools that abstract things away like react, tailwind, bootstrap etc Just learn javascript alongside css. Make sites, style them with css and sprinkle some interactivity with js
ἔρως
ἔρως3mo ago
you can learn html, css and javascript in layers first html, then add css and then add js but as we said here: start with those
CHIDEX
CHIDEXOP3mo ago
Thank you all for giving me the final path to follow. This is the best discord community I've ever joined so far
ἔρως
ἔρως3mo ago
you're welcome
13eck
13eck3mo ago
Here’s the secret Big Tech and techbros can’t tell you: tech is small. It’s the frameworks, libraries, and toolchains that are big. If you learn the base, underlying language you can ignore most frameworks and libraries. And you’ll know when you should reach for one! Libraries, frameworks, and toolchains are created to solve specific problems. But if you don’t know what those problems are, how can you make an informed decision on if it’s a problem for you? For example, if you know how the CSS cascade works you wont have the, “I think I’m too smart for CSS” problem that Tailwind “solves”.
CHIDEX
CHIDEXOP3mo ago
According to what am seeing now Css seems the best due to is easy to read and easy to customize but I was told that big company don't use pure css but there uses framework Just the issues am having for now is that responsive As am learning JavaScript I will be touching most of the css I didn't know
13eck
13eck3mo ago
Big companies use frameworks because they needed them 20 years ago when their website was first created. And instead of re-writing it all using modern CSS they kept using the framework Honestly, “big companies do it” is probably the best reason not to do something. You’re not Nike. You don’t have Nike-scale issues or a Nike-scale dev team Stop trying to be like Nike
CHIDEX
CHIDEXOP3mo ago
Am learning like this boss from your words If I may as, you mean I should focus on pure css, and JavaScript If is so I will do everything possible to stick to it Just that am learning all this alone A self taught coder
13eck
13eck3mo ago
You’re not learning alone, you’re here with us! We gotchu, bro
ἔρως
ἔρως3mo ago
exactly: and you will never be nike. and, if the rainbow unicorn farts on your direction and shows the pot of gold and you grow to nike's size, then worry about those things
CHIDEX
CHIDEXOP3mo ago
Thank you all for the wisdom and knowledge you people have given me Tonight I go with the course you gave me and I know it will surely solve my problem Today is one of my happiest days ever
ἔρως
ἔρως3mo ago
you're welcome
CHIDEX
CHIDEXOP3mo ago
Another feature I saw is clamp() Is it recommended
ἔρως
ἔρως3mo ago
depends on what you're trying to do with it
13eck
13eck3mo ago
It’s a tool. If it’s useful then you use it
ἔρως
ἔρως3mo ago
and like any tools, there are things it is good at and things it is not good/usable for
13eck
13eck3mo ago
Clamp is used to make sure some mathematical formula stays within a specific lower and upper bounds. Good for things like font size as you don’t want the font to be too small or too big. Bad for things like width or border radius. Min or max would be better for width and straight up pixel for border radius.
CHIDEX
CHIDEXOP3mo ago
Now I understand

Did you find this page helpful?