I'm trying to writ an overlay for a few of my divs to prevent users from going to far without doing previous tasks. I have the overlay working and the message displaying, but when I try and center the message thats when the problem arrises.
my jQuery looks like this
$("<div>You have to complete your previous tasks before you can move on.</div>").css({
position: "absolute",
width: "100%",
height: "100%",
top: 0,
left: 0,
background: "rgba(0,0,0,0.3)"
}).appendTo($(".disabled-box").css("position", "relative"));
and as soon as I put
text-align: "center"
in there it breaks and throws the error message
SyntaxError: Unexpected token '-'
Any ideas why this is happening?