DreamweaverのDesignerでのみ処理されるHTMLコードが必要です。もっと正確に言うと、私は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は次のようになります(2番目のタグは「コメントなし」です)。
<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>
また、同じページが別の場所(通常のブラウザなど)で表示されている場合は、正常に処理されます(2番目のタグはコメント化されているため無視されます)。
これは可能ですか?Dreamweaverにはこの種の機能がありますか?