Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Created June 15, 2012 14:03
Show Gist options
  • Save hustKiwi/2936623 to your computer and use it in GitHub Desktop.
Save hustKiwi/2936623 to your computer and use it in GitHub Desktop.
.center {
top: 25%;
text-align: center;
}
<h1>居中的标题</h1>
h1 {
.center;
}
// Better way
<h1 class="center">居中的标题</h1>
requirejs.config({
shim: {
'backbone': {
// 加载backbone.js前需要优先加载的依赖库
deps: ['underscore', 'jquery'],
// 以被加载,就提供一个全局的'Backbone'作为模块值
exports: 'Backbone'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment