css 将内联样式分解为多行会有什么影响吗?

hgtggwj0  于 2023-01-06  发布在  其他
关注(0)|答案(2)|浏览(100)

假设我有一行很长内联样式,例如:

<input type="radio" style="visibility: hidden; position: absolute; foo: bar; baz: foo; etcetera: etc; and: more;">

然后我决定这样让它更有可读性

<input type="radio" style="visibility: hidden; position: absolute;
    foo: bar; baz: foo; etcetera: etc; and: more;">

这会影响功能吗?或者可以像这样将其分成多行吗?

相关问题