表格列的垂直标题(在 Firefox 和 Chrome 中)
我正在尝试使我的表格列标题垂直,如下所示: 垂直列标题
使用的代码:
<style type="text/css">
.VertiColumn th {
writing-mode: tb-rl;
filter: fliph() flipV();
}
</style>
但是它只适用于 IE 不适用于任何其他浏览器,有人可以帮忙吗?
I am trying to make my table column titles veritcal as portrayed and described here:
Vertical Column Headers
the code used:
<style type="text/css">
.VertiColumn th {
writing-mode: tb-rl;
filter: fliph() flipV();
}
</style>
However it only works for IE not any other browser, can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用其他一些 CSS 代码来实现这一点。工作小提琴(在 FF 3.6 和 Chrome 13.0 中测试):
http://jsfiddle.net/mdHB3/1/
取自此网站:http://css3please.com/
I think you could use some other CSS code for that. Working fiddle (tested in FF 3.6 and Chrome 13.0):
http://jsfiddle.net/mdHB3/1/
Taken from this site: http://css3please.com/