Sponsored Content
Full Discussion: CSS frameworks
Top Forums Web Development CSS frameworks Post 302785229 by hanson44 on Monday 25th of March 2013 06:26:32 AM
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:
 

2 More Discussions You Might Find Interesting

1. 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

2. 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
CSS::Adaptor(3pm)					User Contributed Perl Documentation					 CSS::Adaptor(3pm)

NAME
CSS::Adaptor - Arbitrarily map CSS data for use in another context. SYNOPSIS
use CSS; # create a CSS object with an adaptor my $css = new CSS({ 'adaptor' => 'CSS::Adaptor', }); # load some CSS data $css->read_file( "my_file.css" ); # change the adaptor $css->set_adaptor( "CSS::Adaptor::Pretty" ); # output CSS object using the current adaptor print $css->output(); DESCRIPTION
This class is used by CSS to translate a CSS object to a string. This allows CSS data to be easily mapped into other formats. This documentation is for people who want to write their own CSS::Adaptor module. For usage information, see the documentation for CSS. METHODS
CONSTRUCTOR "new()" Called without options. FUNCTIONS "output_rule( $rule )" returns a string containing a formatted CSS::Style object, passed as an object ref "output_selectors( $selectors )" returns a string containing a formatted list of CSS::Selector objects, passed as an array ref "output_properties( $properties )" returns a string containing a formatted list of CSS::Property objects, passed as an array ref "output_values( $values )" returns a string containing a formatted list of CSS::Value objects, passed as an array ref AUTHORS
Copyright (C) 2001-2002, Allen Day <allenday@ucla.edu> Copyright (C) 2003-2004, Cal Henderson <cal@iamcal.com> SEE ALSO
CSS perl v5.14.2 2008-04-23 CSS::Adaptor(3pm)
All times are GMT -4. The time now is 04:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy