When you copy and paste, it appears that the <body>
style is not preserved, and only inline CSS is recognized. I noticed this issue when copying from Firefox and pasting into LibreOffice. The following HTML snippets did not maintain their formatting:
<head>
<style type="text/css">
body { font-family: sans-serif; font-size: 15px; }
span { color: red; }
</style>
</head>
<body>
Lorem ipsum <span>dolor</span> sit amet.
</body>
and
<body style="font-family: sans-serif; font-size: 15px;">
Lorem ipsum dolor sit amet.
</body>
However, the following snippet displayed as expected:
<body>
<div style="font-family: sans-serif; font-size: 15px;">
Lorem ipsum <span style="color: red;">dolor</span> sit amet.
</div>
</body>