Hi there! I am currently using Notepad ++ and I'm trying to figure out how to properly format my CSS rules. I need to insert breaks between each rule so that they are not all crammed into a single line. I have heard about a plugin called XML tools>pretty print, would this be the right tool for the job?
This is what my CSS currently looks like:
body,div,ul,ol,li,h1,h2,h3,h4,h5,h6...;
I would like it to look more organized like this:
.dialog.type-f {
width: 99%;
left: 0.5%;
margin-left: 0;
}
.dialog.type-f section {
overflow: auto;
}
If anyone could provide guidance on how to achieve this formatting, I would greatly appreciate it. Thank you!