Comments by: Levin

The person you searched for (Levin) has authored 2 comments. They are shown below in reverse date-order, and grouped by the post they belong to:

Post Comment
Post Comment
February 2004
Dynamic @import CSS files using PHP

Richard,

I don't really like that because then a page that is saved locally is not compatible in all Browsers. (Save a page in IE oben it again in Opera only to find out that it breaks horribly…

[view in situ]

The best thing with PHP generated styles is that it allows you to use variables:

div{
background-color: $BACKGROUND_COLOR;
width: $PAGE_WIDTH - $SIDEBAR_WIDTH;
}

well, the…

[view in situ]