let's say I have a very long line of inline style, for example:
<input type="radio" style="visibility: hidden; position: absolute; foo: bar; baz: foo; etcetera: etc; and: more;">
and then I decided to make it more readable as follows:
<input type="radio" style="visibility: hidden; position: absolute; foo: bar; baz: foo; etcetera: etc; and: more;">
Does this affect functionality or is it okay to split across multiple lines?
source share