0
我想旋轉XML節點c但沒有任何反應,我不知道爲什麼。XML和CSS:文本不旋轉
HTML:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="cssdata.css"?>
<a>
<b>
<c>
This text should be rotated
</c>
</b>
</a>
CSS:
c
{
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-moz-transform:rotate(45deg);
}