Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Merging CSS files

Tags:

java

merge

css

I have to merge CSS files to one big CSS file to reduce connections made during page load. Basically if I just append CSS files to one big file, are these styles going to work exactly like before, or are there any issues when you merge multiple CSS files together? I'm developing my software in Java, if there is some library that already does CSS merging, I would like to hear about that.

like image 878
newbie Avatar asked Oct 07 '22 22:10

newbie


1 Answers

Use ANT build script from HTML Boilerplate, does the task you are attempting perfectly.

like image 78
Starx Avatar answered Oct 12 '22 11:10

Starx