Notes
Notes copied to clipboard
css的import支持横/竖屏判断
/*横屏*/
@import url('landscape.css') screen and (orientation:landscape);
/*竖屏*/
@import url('portrait.css') screen and (orientation:portrait);