您的位置:首页 > 编程语言

sublime text 媒体查询代码自动生成插件

2015-03-13 13:20 615 查看
Media-Query-Snippets可以通过快捷方式自动生成各种类型的css 媒体查询代码,使用屏幕类型有:

Desktop/Laptop
Ipad (general)
Ipad Landscape
Ipad Portrait
Smartphone (general)
Iphone 4 (retina)
Smartphone Portrait
Smartphone Landscape

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
${1:/* Styles */}
}


安装:通过package control来安装:搜索Media-Query-Snippets。

github:https://github.com/davezatch/Media-Query-Snippets
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐