Overview |
JSS (Javascript Style Sheets) is an enhancement to CSS (Cascading Style Sheets) that adds support for multiple inheritance of tag styles, class styles and tag id styles. This functionality addes the ability to modify styles as well as cascading from style islands/blocks or externally linked css files. |
Examples |
Tag id inheritance example:
/* Assume within CSS file or island/block */
#baseTagID{
|
Class inheritance example:
/* Assume within CSS file or island/block */
.baseClass{
|
Tag inheritance example:
/* Assume within CSS file or island/block */
P{
|
Multiple inheritance example:
/* Assume within CSS file or island/block */
.normalText{
|
Download |
Download the latest version at http://sourceforge.net/projects/glm-jss/ |
Author |
JSS (Javascript Style Sheets) was developed by Jason Graves (GodLikeMouse) http://www.godlikemouse.com as is free to use under the GNU General Public License (GPL). See the README file for more details. |