Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

space after comma #15

Open
Daniel-Hug opened this issue Mar 11, 2013 · 2 comments
Open

space after comma #15

Daniel-Hug opened this issue Mar 11, 2013 · 2 comments

Comments

@Daniel-Hug
Copy link

With this CSS as input:

button,input,select,textarea{font-family:"museo-sans-rounded","Arial Rounded",sans-serif}

This is the output we currently get:

button,input,select,textarea {
    font-family: "museo-sans-rounded","Arial Rounded",sans-serif;
}

I would prefer to have a space or newline (perhaps toggleable) after each comma:

button, input, select, textarea {
    font-family: "museo-sans-rounded", "Arial Rounded", sans-serif;
}

Just be careful in your implementation of this to not 'fix' what shouldn't be fixed:

li:after {
    content: ",";
}

(don't add a space after the comma in the last example rule.)

@sindresorhus
Copy link

👍

@tomByrer
Copy link

+1 spacing,helps,with,readability,don'tchathink?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants