我想旋轉我的表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);
,你會得到輸出this。
它不工作:( – 2013-03-02 17:16:09
請在這種情況下提供您的HTML – hjpotter92 2013-03-02 17:18:20
我知道了...但表中的值也旋轉,我該如何做,以便表中的值不應該影響 – 2013-03-02 17:25:27
http://caniuse.com/transforms2d – Dharman 2013-03-02 17:10:39
什麼是錯誤?你不能在我們可以看到的任何地方定義變量'table'。 – James 2013-03-02 17:15:09