我需要一些 HTML 代码只能由 Dreamweaver 的设计器处理。更准确地说,我需要smth。像这样:
<html>
...
<link rel="stylesheet" type="text/css" media="screen" href="styles_print.css" title="printer_friendly_css" />
<!-- FOR_DREAMWEAVER_DESIGNER_ONLY
<link rel="stylesheet" type="text/css" media="screen" href="styles.css" title="normal_css" />
-->
...
</html>
因此,当在 Dreamweaver 的 Designer 中查看此页面时,有效的HTML 如下所示(第二个标记为“未注释”):
<html>
...
<link rel="stylesheet" type="text/css" media="screen" href="styles_print.css" title="printer_friendly_css" />
<link rel="stylesheet" type="text/css" media="screen" href="styles.css" title="normal_css" />
...
</html>
并且当在其他地方(例如在常规浏览器中)查看同一页面时,它会按原样处理(第二个标签被忽略,因为它被评论了)。
这可能吗?Dreamweaver 有这种功能吗?