When transforming (rotating) a container, such as a list, the annotations are not transformed. Taking this list for example:
and
While the list is rotated correctly, the links do not work anymore. However, if you hover over the place the links used to be before the rotation, you will recognize the annotations are still there and work. I'm using the latest prince alpha version in Ubuntu x64.
<ul id="mylist">
<li class="item"><a href="http://www.prince.com">test</a></li>
<li class="item"><a href="http://www.prince.com">test</a></li>
<li class="item"><a href="http://www.prince.com">test</a></li>
<li class="item"><a href="http://www.prince.com">test</a></li>
</ul>
and
#mylist{
transform: rotate(-90deg);
transform-origin: left top;
}
While the list is rotated correctly, the links do not work anymore. However, if you hover over the place the links used to be before the rotation, you will recognize the annotations are still there and work. I'm using the latest prince alpha version in Ubuntu x64.