芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/doc/HTML_CSS/examples/CSS_Stylesheet.php
* @author Laurent Laville
* @copyright 2003-2009 Klaus Guenther, Laurent Laville * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version CVS: $Id: CSS_Stylesheet.php,v 1.11 2009/01/19 23:22:38 farell Exp $ * @link http://pear.php.net/package/HTML_CSS * @ignore */ require_once 'HTML/CSS.php'; $css = new HTML_CSS(); // define styles $css->setStyle('body', 'background-color', '#0c0c0c'); $css->setStyle('body', 'color', '#ffffff'); $css->setStyle('h1', 'text-align', 'center'); $css->setStyle('h1', 'font', '16pt helvetica, arial, sans-serif'); $css->setStyle('p', 'font', '12pt helvetica, arial, sans-serif'); // output the stylesheet directly to browser $css->display(); // or save it to a file //$css->toFile('example.css'); ?>