How are CSS frameworks used?

后端 未结 2 2097
慢半拍i
慢半拍i 2021-02-15 09:05

For some reason, it never dawned on me that there could be frameworks for CSS. I have been working on my own personal site, and I just really hate \'designing\' with CSS (I thi

2条回答
  •  滥情空心
    2021-02-15 09:43

    Caveat: I haven't really looked into this subject in a few years, the landscape may have changed.

    The few CSS frameworks I've played with in the past have been more or less hideous things designed for snapping to grids, wrongheaded desires to bring WYSIWYG into the picture, and providing things like generic rounded corners and such. They tend to have some semantic issues (.italic FTL) and require a lot of manual tinkering for a framework.

    More practical for the CSS beginner or rapid dev site, are perhaps the CSS reset which functions to baseline CSS across browsers (yahoo's) (Erik Meyer's). But this is not without it's own controversy and never seemed to be enough.

    Basically. I find CSS requires a toolbox of common techniques of your own, but something you'll pick and choose and modify constantly. As in much of web dev I think the more experienced you get the more you find yourself wanting to roll your own.

提交回复
热议问题