2

我想将我的桌子旋转 180 度。我写了一个 CSS 来工作,但它不起作用。这是代码

function rotateTable()
{
 table.className="tablecss";
}


<style type="text/css">
        .tablecss
        {       
         transform:rotate(180deg);
        }
</style>
4

1 回答 1

4

也添加以下内容:

-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
-moz-transform: rotate(180deg);

你会得到这样的输出。

于 2013-03-02T17:12:52.867 回答