Login   Register  
PHP Classes
elePHPant
Icontem

File: sample1/sample.i.css

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of mehmet emin akyüz  >  Inherited CSS  >  sample1/sample.i.css  >  Download  
File: sample1/sample.i.css
Role: Auxiliary data
Content type: text/plain
Description: Sample css file which uses "-inherit"
Class: Inherited CSS
Build CSS styles that inherit from parent styles
Author: By
Last change:
Date: 2012-05-10 01:06
Size: 501 bytes
 

Contents

Class file image Download
@charset "utf-8";
/* CSS Document */

a { color:#ff0000; text-decoration:none; }

b .n { font-style:normal;}
.cls1 {font-size:10px; font-style:italic; }
.cls2 {font-size:20px;}
.cls3 {font-family:tahoma;}
.cls4 {-inherit: .cls1; -inherit:.cls3;}
.cls5 {-inherit:.cls2; -inherit:.cls3;}
.cls6 {
	-inherit :.cls5;
	color:#ff0000;
}
.cls7 {-inherit: b 	.n;}

th, td {
	font-family:arial;
}

#cell1 {
	-inherit:th;
	color:#ff0000;
}

#cell2 {
	color:#00ff00;
	-inherit:td;
}