Is it possible to include multiple css at once in html? Or to be precise, is it possible to include all css placed in a directory, in one go? like at present what we d
you could use php to list all file with css extension in that directory...
$fp = opendir($dir); while ($file = readdir($fp)) { if (strpos($file, '.css',1)) $results[] = $file; } closedir($fp);
...and than do a foreach construct to incude css's