I've noticed in HTML view if I put in HTML w/ CSS like this:
<div style="border:2px solid #cc0000; width: 180px; font-size: 16px; text-align: center; ">
after I save it becomes something much less readable, such as:
<div style="border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: #cc0000; border-right-color: #cc0000; border-bottom-color: #cc0000; border-left-color: #cc0000; width: 180px; font-size: 16px; text-align: center; ">
Why is this happening, and how do I prevent it?
