Skip to content

Instantly share code, notes, and snippets.

@dbaldwin
Created February 15, 2012 17:53
Show Gist options
  • Save dbaldwin/1837757 to your computer and use it in GitHub Desktop.
Save dbaldwin/1837757 to your computer and use it in GitHub Desktop.
JavaScript for basic CSS fixed overlay centered on page
var d = document.createElement("div");
d.style.background = "#FFFF00";
d.style.top = 0;
d.style.position = "fixed";
d.style.top = "50%";
d.style.left = "50%";
d.style.marginLeft = "-150px";
d.style.zIndex = "100000";
d.style.width = "300px";
var t = document.createTextNode("Message goes here...");
d.appendChild(t);
document.body.appendChild(d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment