I want to select the first child of <body> that is a <div>, and only that element.
I'm having trouble formulating the right selector for the element I want. I could simply give it an ID, but now I'm curious about whether this is possible in general.
In a simple situation like this:
<body>
<div></div>
</body>
I can just use the child selector:
body > div {
margin: 0 auto 0 auto;
width: 800px;
}
But what happens now if there are two <div> elements underneath <body>?
<body>
<div></div>
<div></div>
</body>
Well, now I can just use the first-child pseudo-class to make my selection. This works great:
body > div:first-child {
margin: 0 auto 0 auto;
width: 800px;
}
But wait just a second. What if someone goes and sticks another child element into <body> before my <div>?
<body>
<a name="top"></a>
<div></div>
<div></div>
</body>
How can I select only the first <div> child in this case (in general)?