19
I finally got my CSS to behave after a week of tweaks
In my experience, getting CSS to work right can be a real test of patience. I was trying to make a simple layout for my first web project, and it just wouldn't line up. Your mileage may vary, but for me, it took hours each day for a full week. I kept changing little things, watching tutorials, and getting frustrated. Then, I stumbled on a tip about using flexbox instead of floats. After I switched, everything fell into place almost right away. Take this with a grain of salt, but sometimes the answer is simpler than you think.
3 comments
Log in to join the discussion
Log In3 Comments
wadem891mo ago
Flexbox? Still a headache sometimes.
5
brooke_miller1mo ago
Did you see that guide on fixing flexbox problems? I heard that a big mistake is not picking row or column first. The writer said to start with that, then fix other things. It helped me stop fighting with my css so much.
3
wesleyl531mo ago
Seriously, flexbox isn't some magic fix. It solves some layout problems but makes new ones, especially with weird browser bugs. @brooke_miller, that guide sounds nice but starting with row or column doesn't stop the real headaches. You still get stuff shrinking or stretching in ways you never asked for. I switched to flexbox a while ago and still waste time fighting it. The truth is, all css layout methods are just different kinds of pain.
2