我是靠谱客的博主 甜蜜学姐,这篇文章主要介绍用CSS让表格返转的代码 IE only,现在分享给大家,希望可以做个参考。

返转90或180度应理解为“翻转90或180度”,用镜像翻转滤镜fliph,flipv.
一个表格原地不动<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66"><tr><td align="center">一个简单的表格</td></tr></table>

<br>表格沿X轴水平镜像翻转(90度)<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66" style="FILTER: fliph;"><tr><td align="center">一个简单的表格</td></tr></table>

<br>表格沿Y轴垂直镜像翻转(180度)<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66" style="FILTER: flipv;"><tr><td align="center">一个简单的表格</td></tr></table>

table{FILTER: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1);}
旋转角度滤镜
一个表格原地不动<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66"><tr><td align="center">一个简单的表格</td></tr></table>

<br>表格顺时针旋转90度<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66" style="FILTER: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1);"><tr><td align="center">一个简单的表格</td></tr></table>

<br>表格顺时针旋转180度<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66" style="FILTER: progid:DXImageTransform.Microsoft.BasicImage(Rotation=2);"><tr><td align="center">一个简单的表格</td></tr></table>

<br>表格顺时针旋转270度<br>
<table border="1" cellspacing="0" cellpadding="0" width="156" height="66" style="FILTER: progid:DXImageTransform.Microsoft.BasicImage(Rotation=3);"><tr><td align="center">一个简单的表格</td></tr></table>

最后

以上就是甜蜜学姐最近收集整理的关于用CSS让表格返转的代码 IE only的全部内容,更多相关用CSS让表格返转的代码内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(130)

评论列表共有 0 条评论

立即
投稿
返回
顶部