Skip to content

Instantly share code, notes, and snippets.

@ibourgeois
Created February 24, 2016 21:16
Show Gist options
  • Save ibourgeois/18d73614f15f63796d18 to your computer and use it in GitHub Desktop.
Save ibourgeois/18d73614f15f63796d18 to your computer and use it in GitHub Desktop.
PHP CSS Class
<?php
class CSS {
public function __construct() {
}
public function new($selector, $rules) {
$css = $selector.'{';
foreach ($rules as $property => $value) {
$css .= $property.':'.$rule.';';
}
$css .= '}';
return $css;
}
}
/*
----- EXAMPLE -----
CSS::new('#test', array(
'background' => '#ffffff',
'color' => '#222222'
));
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment