我正在做一份报告,在报告中我必须呈现来自不同提供商的电子邮件,这些电子邮件带有自己的 css(通常是内联 css,但有时它们应用一般样式)。我通常使用 iframe 来封装 css,所以它不会破坏我的,但我现在不能使用它。
有没有办法在不使用 iframe 的情况下封装 css?
这是我遇到的问题的一个例子:
<html>
<head>
<style>
// I enclose it to content so it doesn't override the email css
#my_content table, #my_content p {
color: black;
}
</style>
</head>
<body>
<div id='my_content'>
... some stuff ...
<div id='email'>
<html>
<head>
<style>
table {
margin-left: 100cm; // screws up all my tables
}
.... some styles that should only apply inside the email div ...
</style>
</head>
<body>
.... email content ...
</body>
</html>
</div>
</div>
</body>
</html>
我可以提取 html 结构并获取正文中的内容,但并不是我所有的电子邮件都会看起来像它应该的那样。此外,html 必须是有效的,所以任何建议都会很棒!