I want to send some msg from our manage system to customers. but i wanna some tags hidden to them. i set css : .hidden{display:none;}
, but this does not work.
views:
252answers:
4Outlook 2007 uses the Microsoft Word engine for rendering HTML which has very limited support for CSS. This page describes the kind of things you can expect to work (display
is one of the "not supported" ones).
Unfortunately, there's not much you can do. You can enclose the element in HTML comments <!-- ... -->
which would stop it from rendering, but that's about it.
Try this - may this will work for you
.hidden{visibility: hidden;}
Outlook 2007 has limited support for CSS and HTML. Read this article for more information.
If class-based CSS rules don't work, try ID-based CSS rules. Just try to keep your rules as simple as possible.
You can use this tool to validate your HTML and CSS for use in Outlook 2007.
This is not really an answer but you should see this:
http://www.email-standards.org/clients/microsoft-outlook-2007/
This is why display: none
and a lot of other things do not work on outlook 2007.