Office Conditional Else Statement

时间:2016-10-20 21:04:40

标签: css outlook ms-office

使用以下Microsoft Office条件语句,我可以将Outlook版本定位为大于或等于2016:

<!--[if gte mso 16]><!-->
    <style type="text/css">
        table tr td { line-height: normal !important; }
    </style>
<!--<![endif]-->

我如何定位其他一切?类似于else语句或使用感叹号的“not”语句:

<!--[if !gte mso 16]><!-->
    <style type="text/css">
        table tr td { line-height: normal !important; }
    </style>
<!--<![endif]-->

1 个答案:

答案 0 :(得分:0)

您需要将Microsoft Office视为理解这些注释的唯一应用程序,并提供将被其他所有内容忽略的语法

<![if lt mso 16]>
    <style type="text/css">
        table tr td { line-height: normal !important; }
    </style>
<![endif]>

请点击此链接获取更多示例:https://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx#code-snippet-8