addCssFile() public method

Add to the list of CSS files to serve.
public addCssFile ( $filename, boolean $folder = false, boolean $options = false )
$filename
$folder boolean
$options boolean
 /**
  * Add our CSS.
  *
  * @param AssetModel $sender
  */
 public function assetModel_styleCss_handler($sender)
 {
     $sender->addCssFile('fileupload.css', 'plugins/FileUpload');
 }
 /**
  * Add the tag admin page CSS.
  *
  * @param AssetModel $sender
  */
 public function assetModel_adminCss_handler($sender)
 {
     $sender->addCssFile('tagadmin.css', 'plugins/Tagging');
 }