CSS frameworks


 
Thread Tools Search this Thread
Top Forums Web Development CSS frameworks
# 1  
Old 03-24-2013
CSS frameworks

I have been reading up on CSS frameworks, to see if it could be useful for an intranet that I am helping to build, but the true purpose does not become clear to me. What circumstances would the deployment of a CSS framework be useful in? What does a CSS framework do that a CMS template cannot do?
# 2  
Old 03-25-2013
I personally feel that CSS frameworks are a bad idea.

If you stick with regular CSS, you are using the lowest common denominator and will be 100% compatible with anyone, can go anywhere. With the framework, you are stuck in that system, have backed yourself into a corner.

With regular CSS, you can validate the code to the point where there are zero errors. With the framework, that may not be possible. There might typically be errors in the framework code itself. You can't change that code, you're stuck with it.

With regular CSS, anybody can look at your files and understand them. With the framework, only the limited group who understands that special framework can make sense of your files.

With regular CSS, you will become expert at CSS, and can apply that knowledge anywhere. With the framework as a crutch, you may never really learn CSS.

I'm sure there are advantages to using a framework. Maybe if you are doing something quick and dirty, it's a good idea. But for the long run I think you are better off with CSS, either as part of a web site template or something you write from scratch.
This User Gave Thanks to hanson44 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Web Development

Optimizing JS and CSS

Yes. Got few suggestions. - How about minifying resources - mod_expires - Service workers setup https://www.unix.com/attachments/web-programming/7709d1550557731-sneak-preview-new-unix-com-usercp-vuejs-demo-screenshot-png (8 Replies)
Discussion started by: Akshay Hegde
8 Replies

2. Web Development

On Css

<html> <head> <style> div.box {width: 300px; height: 200px; padding: 30px; font: 46 pt times new roman;} </style> </head> <body> <div class="box" style=" filter": progid:DXImagetransform.Microsoft.Alpha (Opacity=100, FinishOpacity=0, Style=1, StartX=0, FinishX=0,... (0 Replies)
Discussion started by: N-Training
0 Replies
Login or Register to Ask a Question