我想将我的桌子旋转 180 度。我写了一个 CSS 来工作,但它不起作用。这是代码
function rotateTable()
{
table.className="tablecss";
}
<style type="text/css">
.tablecss
{
transform:rotate(180deg);
}
</style>
我想将我的桌子旋转 180 度。我写了一个 CSS 来工作,但它不起作用。这是代码
function rotateTable()
{
table.className="tablecss";
}
<style type="text/css">
.tablecss
{
transform:rotate(180deg);
}
</style>
也添加以下内容:
-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
-moz-transform: rotate(180deg);
你会得到这样的输出。