alex198710/csstidy

封装了 CsTidy 库

安装次数: 24

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

开放性问题: 0

类型:symfony-bundle

dev-master 2014-08-22 20:21 UTC

This package is not auto-updated.

Last update: 2024-09-24 01:58:33 UTC


README

  • 封装 CSSTidy
  • CSSTidy 1.3 csstidy.sourceforge.net

PHP > 5.3

Composer.json

Add this line:
"alex198710/csstidy": "dev-master"

然后可以这样使用

<?php
include('class.csstidy.php');

$css_code = '
a {
color:black;
background-color:blue;
}';

$css = new csstidy();

$css->set_cfg('remove_last_;',TRUE);

$css->parse($css_code);

echo $css->print->formatted();
?>