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

NAME
CSS::Style - A ruleset in a CSS object tree SYNOPSIS
use CSS; DESCRIPTION
This module represents a ruleset in a CSS object tree. Read the CSS.pm pod for information about the CSS object tree. METHODS
CONSTRUCTORS "new()" or "new( { ..options.. } )" This constructor returns a new "CSS::Style" object, with an optional hash of options. adaptor adaptor to use for serialization ACCESSORS "add_selector( $selector )" This method adds a selector to the selector list for the object. $selector is a reference to a CSS::Selector object. "add_property( $property )" This method adds a selector to the property list for the object. $property is a reference to a CSS::Property object. "set_adaptor( 'CSS::Adaptor::Foo' )" This method sets the current adaptor for the object. "selectors()" This method is used to serialize the ruleset's selectors, using the current adaptor. It returns a string which come from the adaptor's "output_selectors()" method. "properties()" This method is used to serialize the ruleset's properties, using the current adaptor. It returns a string which come from the adaptor's "output_properties()" method. "to_string()" This method is used to serialize the ruleset, using the current adaptor. It returns a string which comes from the adaptor's output_rules() method. "get_property_by_name( 'property_name' )" Returns the first CSS::Property object with the specified name. Returns zero on failure. AUTHOR
Copyright (C) 2003-2004, Cal Henderson <cal@iamcal.com> SEE ALSO
CSS, http://www.w3.org/TR/REC-CSS1 perl v5.14.2 2008-04-23 CSS::Style(3pm)
All times are GMT -4. The time now is 06:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy