| Most of the courses I've looked at for learning css are either too theoretical or aimed at beginners. I feel as though I have a decent theoretical understanding of CSS but I want something that is just drilling home stuff like creating great looking buttons, panels and input fields. Any suggestions are much appreciated! |
However, for the last two years I've been building a related web app that's all JS. We've cobbled together our own UI conventions out of HTML, CSS, and Backbone/Marionette classes. For a long time, I got frustrated with any task that involved doing UI layout. I inevitably found myself reduced to desperate googling and randomly flipping CSS attributes in the hopes that I might finally get things to slide into place.
Fortunately, in the last couple months things seem to have finally come together for me. The two keys for me have been:
- Grasping the core concepts of the HTML box model and block/inline behavior
- Flexbox. Flexbox FTW. I've been able to replace SO many nasty CSS hacks with simple flexbox directives over the last few weeks.
Here's two key links that have really helped me:
- http://learnlayout.com/ is a great guide to the basics of layout in CSS
- http://jonibologna.com/flexbox-cheatsheet/ is a simple graphical overview of flexbox commands
Obviously, all this is focused on the layout aspect rather than the "styling" part per se, as that's been my biggest concern on this project.