【发布时间】:2011-10-14 00:30:38
【问题描述】:
如何在 Chrome 开发者工具中调试 css fororientation:portrait?
我在 (orientation:portrait) 中写的任何内容都无法通过 Firebug 和 Chrome 开发者工具即时编辑。它总是显示正常的属性。
/*normal styles here */
#wrap {
width:1024px;
}
@media only screen and (orientation:portrait){
/* portrait styles here */
#wrap {
width:768px;
}
}
【问题讨论】:
标签: google-chrome css firebug media-queries