我无法根据条件旋转表格

时间:2013-03-02 17:08:13

标签: javascript html css css3 transform

我想把我的桌子旋转180度。我写了一个css工作,但它无法正常工作。 这是代码

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


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

1 个答案:

答案 0 :(得分:4)

也添加以下内容:

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

您将获得this的输出。