Have you got an example of such an answer? Thirty characters is not a lot. I've never come across a need to have to pad with the HTML comment.
How about providing;
- A longer description.
- Link to documentation.
- Link to further reading.
- A code example.
In terms of the title of this question being too short, how about doing what the system advises you to do and make it more descriptive;
- Is it bad to pad answers to 30 chars with <!-- padding -->
- What to do if my legit answer is less than 30 chars?
- ... etc.
I assume this question stems from your recent answer to this question; CSS styling input [type="??"] for select lists
Your answer was:
select<!-- padding padding -->
My answer was
The input[type="text"] CSS selector can be broken down into;
input; find all elements that are input elements.
[type="text"]; filter those elements by those which have the type attribute of text.
Because a select box is a <select> element rather than a <input type="select" />, you can just use the select selector as follows;
select {
/* blah blah blah*/
}
Sometimes I have a legit answer that's less than the 30 character minimum.[citation needed] – M. Night Demonbobby Mar 28 '12 at 9:53