CSS files vs skin files
Question by just_name
Q: I want to know :
- Are the skin files can replace the
CSS files? -
What are the advantages of
skin files? -
Are those files can provide more
brilliant things the CSS files
can’t?and
-
When to use skin files in my web
application?
Answer by Geoff Appleford
Asp.net skins are one part of asp.net Themes. From the MSDN docs:
Themes are made up of a set of
elements: skins, cascading style
sheets (CSS), images, and other
resources. At a minimum, a theme will
contain skins. Themes are defined in
special directories in your Web site
or on your Web server.
Skins are used to define default markup for asp.net server controls:
<asp:button runat="server" BackColor="lightblue" ForeColor="black" />
whereas CSS is used to style your native HTML elements (of course asp.net server controls render as native elements so CSS can also be used to style these
Answer by Starx
CSS Files is a .css
file contains style tags nothing more (for example, page.css)
But, a theme
or skin
file might be a set of files containing images, icons, css files, js files which can be used or integrated as sort of a plugin to change the appearance of the Application. (for example, a joomla template)