Skip to content

Instantly share code, notes, and snippets.

View booknara's full-sized avatar

Daehee Han booknara

  • Facebook.Inc
  • San Jose, CA
View GitHub Profile
@booknara
booknara / gist:5536207
Created May 7, 2013 21:18
Centering div element onto the window.
div.classname {
position: absolute;
left: 50%; /* Start with top left in the center */
top: 50%;
width: 200px; /* The div fixed width... */
height: 100px; /* ...and height */
margin-left: -100px; /* Shift over half the width */
margin-top: -50px; /* Shift up half the height */
}
@booknara
booknara / abc.json
Created February 22, 2013 01:36
This file is for testing CORS(Cross-Origin-Resource-Sharing). You need to change Server configuration. Also, the server should have a json file like abc.json to request.
[
"bbb",
"ccc"
]