Does anyone know the limitations of CSS rendering in EditLive! version 6.7.5.27? Specifically, is the engine that renders the content in the “Design” view limited to only very basic CSS selectors and declarations (like, IE 5-era basic)? For instance, I have content that’s marked up like this:
<code style=“white-space: pre-wrap;”>
<ul class=“tabheader four-tabheader”><br /> <li class=“top-radius-corner active first” id=“content-one”><a href="#">Tab 1</a></li><br /> <li class=“top-radius-corner” id=“content-two”><a href="#">Tab 2</a></li><br /> <li class=“top-radius-corner” id=“content-three”><a href="#">Tab 3</a></li><br /> <li class=“top-radius-corner last” id=“content-four”><a href="#">Tab 4</a></li><br /></ul>
</code>
And CSS that looks like this:
<code style=“white-space: pre-wrap;”>
ul.tabheader li.top-radius-corner {<br /> background-color: #CCCCCC;<br /> font-size: 14px;<br /> font-weight: bold;<br /> height: 40px;<br /> margin: 0 0 10px 0;<br /> text-align: center;<br /> ephox-visible: false;<br />}
ul.tabheader li.active {<br /> background-color: #333;<br /> ephox-visible: false;<br />}
ul.tabheader li a {<br /> color: #000000;<br /> font-size: 14px;<br /> font-weight: bold;<br /> text-align: center;<br /> text-decoration: none;<br /> ephox-visible: false;<br />}
</code>
So, I’m expecting to see all four list items styled as specified by the first declaration with the first list item having a darker gray background. Instead, I see only the middle two list items styled correctly and NO styling on the first or last list items. Like so:
Does Ephox choke on rendering CSS on elements with more than one class? Any way around this limitation if that’s the case?
Thanks!