Chrome開発者ツールでorientation:portraitのcssをデバッグするには?
内部に書い たもの(orientation:portrait)
は、Firebug や Chrome 開発者ツールからその場で編集することはできません。通常のプロパティが常に表示されます。
/*normal styles here */
#wrap {
width:1024px;
}
@media only screen and (orientation:portrait){
/* portrait styles here */
#wrap {
width:768px;
}
}