Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want to figure out how to make my PHP, CSS or JS code flat to the right. When I was surfing on internet, I didn't know exactly what the keyword should be for my question. So, I need help from all of you guys.

Here is what I want to achieve:

#div{
  border-radius:5px;
  padding:10px;
  margin:10px;
} 

#divB{
border-radius:5px;
  padding:10px;
  margin:10px;
}

would become like this:

#div{border-radius:5px;padding:10px;margin:10px;}#divB{border-radius:5px;padding:10px;margin:10px;//and continue to the right}

Is there any software that can do that?
Tnx

share|improve this question
Look at leafo.net/lessphp – JvdBerg Oct 25 '12 at 9:46
css minifier cssminifier.com – Esailija Oct 25 '12 at 9:46
The keywords are "minify css". But this is rarely worth the pain, contrary to css concatenation or js minification. – dystroy Oct 25 '12 at 9:46
Do you mean whitespace removal? Eg remove all extra line breaks and redundant spaces/tabs? – scunliffe Oct 25 '12 at 9:47
show 4 more comments

closed as not a real question by hakre, Ram kiran, Gordon, tereško, Adriano Oct 25 '12 at 11:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I think you'll looking for a "minifier"

For example you can minify css: http://www.cssminifier.com/, which when inputting the css above, you get #div{border-radius:5px;padding:10px;margin:10px}#divB{border-radius:5px;padding:10px;margin:10px}

It's not necessary to minify php, as it's not downloaded by the client. However, you can do it for html and javascript

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.