日期:2014-05-16 浏览次数:20527 次
<script type="text/javascript"> <style type="text/css"> <!—- h1{ color: green; font-style: italic; font-size: 12pt; } h1.special{ font-size: 24pt; } .newheader{ color: yellow; } #caps{ font-variant: small-caps; } // --> </style> </script>
------解决方案--------------------
<html> <head> <style type="text/css"> <!—- h1{ color: green; font-style: italic; font-size: 12pt; } h1.special{ font-size: 24pt; } .newheader{ color: yellow; } #caps{ font-variant: small-caps; } // --> </style> </head> <body> <h1>Green, italic, and a point size of 12</h1> <h1 class="newheader">Yellow, italic, and a point size of 12</h1> <h1 class="special">Point size of 24</h1> <p> Here is some <span id="caps">capitalized</span> text. </p> </body> </html>
------解决方案--------------------
你把css放到了script标记里面了
------解决方案--------------------