What a catchy thread name!
Im hoping someone could help with a <DIV> problem. I've looked on google but cant seem to find my problem. Im expermenting with div tags and am having some trouble:
Basicly, the DIV with its attributes in the HTML code works well, but the CSS attributes arent being picked up. Im betting I missed something blindingly obvious but I cant see it!
Just so you know; I've tried other tags in the CSS file work so its deffernatly linked to the HTML correctly

Im hoping someone could help with a <DIV> problem. I've looked on google but cant seem to find my problem. Im expermenting with div tags and am having some trouble:
Code:
<head>
<title>Untitled Document</title>
<link href="/CSS-Div.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div style="top: 107px;
left: 307px;
position: absolute;
width: 172px;
visibility: show;">Tester</div>
<div class="header">CSS Test </div>
</body>
</html>
Code:
div.header {
top: 138px;
left: 174px;
position: absolute;
width: 172px;
visibility: show;
}
Basicly, the DIV with its attributes in the HTML code works well, but the CSS attributes arent being picked up. Im betting I missed something blindingly obvious but I cant see it!
Just so you know; I've tried other tags in the CSS file work so its deffernatly linked to the HTML correctly