Hi there,
I'd like to know how to prohibit the editor to be too smart in attribute paring. Namely, I've got a tag with inline styles
- padding: 0px,
- padding-top: 4px;
- padding-bottom: 5px;
which the editor successefully transforms into a valid single attribute padding:
padding: 4px 0px 5px;
But I really do not want this to happen, I need three attribute values in the inline style as above. How I can turn off this behaviour?
Thanks in advance!