Chrome adding inline styles

Permalink
Hi, I've got a really weird one.
When I edit my test site in Chrome it automatically adds inline styles to bullet points and ordered list as a span inside the <li> tag. It adds font-size & line height - both values the same as the stylesheet, but as a result of adding them the text becomes very small. does anyone know why it's doing this. No problem what so ever in Firefox, just Chrome.

eg what should be:
<ul>
<li>list item here.</li>
</ul>

becomes:
<ul>
<li><span style="font-size: 0.933em; line-height: 1.643;">list item here.</span></li>
</ul>

Also if I hit return a couple of times after a list (in tiny MCE) I get this added:

<div><span style="font-size: 14px; line-height: 22.883415222168px;"><br /></span></div>

I'm using v5.6.3.2

Thanks, Bek

 
hutman replied on at Permalink Reply
hutman
Do you have font-size and line-height definitions in your typography.css? This is usually the cause of that, if you remove them an put them in your "main" stylesheet this behavior will stop.