Login   Register  
PHP Classes
elePHPant
Icontem

File: inheritance.css

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Tufan Baris YILDIRIM  >  D3Css  >  inheritance.css  >  Download  
File: inheritance.css
Role: Auxiliary data
Content type: text/plain
Description: Example Css File
Class: D3Css
Evaluate CSS styles with inheritance support
Author: By
Last change: comments.
Date: 2010-06-23 06:25
Size: 469 bytes
 

Contents

Class file image Download
BODY,.body {
 color:#666;
 font-size:12px;
 height:100%;
 font-family: 'Segoe UI';
 background:#eff7ff url('deneme_bg.png') fixed;
}


table {
    color:#1f1f1f;
    font-weight: 700;
}


overriden-table
{
    based-on:'table';  /* table properties will be came here. */
    color:red;
    width:100%;
    height:100%;

}

full-style-table
{
    based-on:'overriden-table'; /* table and overriden table styles here.*/
    border:1px solid;
}