इस टूल में कोई समस्या है?
«CSS फ़ॉर्मेटर ऑनलाइन» के बारे में
यह टूल मिनिफाइड या अव्यवस्थित CSS को अच्छी तरह से इंडेंट किए गए, पठनीय रूप में सुंदर बनाता है। यह प्रत्येक घोषणा को अपनी लाइन पर रखता है, ब्रेसेस और कोलन के आसपास रिक्ति को सामान्य करता है।
उत्पादन CSS पढ़ते समय, कोड समीक्षा के लिए CSS तैयार करते समय उपयोगी।
फॉर्मेटर नेस्टेड चयनकर्ताओं, मीडिया क्वेरीज़, कीफ़्रेम्स और आधुनिक सुविधाओं को सही ढंग से संभालता है।
इस टूल का उपयोग कैसे करें
How to pretty-print minified or messy CSS
Paste the CSS
Drop minified or unevenly-indented CSS into the "CSS" field. The tool accepts whole stylesheets or fragments; comments, media queries, and nested at-rules pass through.
Press Run
Result is a single `formatted` field with one declaration per line, two-space indentation inside braces, and a blank line between top-level rules. Selectors stay on one line; very long ones won't wrap.
What it doesn't do
No vendor-prefix expansion, no shorthand → longhand transformation, no autoprefixing, no value rewriting. If your input is `margin:0 5px` the output will be `margin: 0 5px;`, not the four separate top/right/bottom/left properties.
When to re-minify
Format for human review, then run css-minifier-online before deploying. Round-trip safety holds for valid CSS — invalid input gets a best-effort pass and may not parse identically afterward.