A question:How to I know what stylesheets were associated the element.

This is a sample.

<style type="text/css">
   div {color:white;background-color:black}
   #div {position:absolute;left:10px;top:10px}
</style>
<body>
   <div>Title</div>
  <div id="div">This is a test </div>
</body>

And I wish know how many cssRules were assocaited the DIV tags.

Received on Friday, 23 May 2003 23:36:27 UTC