This has got to be simple, but for some reason I can't get it to work.
I just want to center my div, which I'll later be putting content in.
Shouldn't I just be able to create a .css for it and in there specify to
center the text?
I can't even position it though. I tried pu****ng it 100px on the left,
and it
does nothing.
What am I missing?
<link href="showStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="movie"> </div>
</body>
</html>
My .CSS sheet:
@[EMAIL PROTECTED]
"UTF-8";
#movie {
background-color: #000000;
width: 720px;
height: 540px;
text-align: center;
left: 100px;
}
body {
margin: 0px;
padding: 0px;
}