Is it safe to give several elements the same ID in one page?
As you know, it's against the validation rules to give more than one element the same ID in a single page. However, rules are broken, and in the world of HTML tag soup, browsers have to account for these broken rules without breaking pages, hence the behavior you observe.
Although browsers have been shown to behave the same way even if you do so (fortunately for situations where it can't be helped), I wouldn't call it totally "safe" to do so, as such behavior may not be consistent or reliable.
The best bet is to follow the rules as faithfully as you can, and only break the rules if you have very, very good reasons to (and you almost never will, so don't even consider it). Otherwise, like Joseph Silber said, use classes, designed specifically for classifying or grouping multiple elements.
Can anybody explain this strange situation?
The uniqueness of IDs in an HTML document is not enforced or assumed by CSS; instead, the selectors spec asks that browsers match any and all elements with a given ID to that ID selector, as shown by the code examples:
The following ID selector represents any element whose ID-typed attribute has the value "chapter1":
#chapter1
The following selector represents any element whose ID-typed attribute has the value "z98y".
*#z98y
This is clarified by level 3 of the Selectors spec, in the same paragraph just before the code examples (emphasis mine):
What makes attributes of type ID special is that no two such attributes can have the same value in a conformant document, regardless of the type of the elements that carry them; whatever the document language, an ID typed attribute can be used to uniquely identify its element.
Where "conformant" refers to conformance to HTML, not CSS. Keep in mind that this text wasn't present in the level 2 spec, which is the one you quote in your question.
Bear in mind that this is for the purpose of being clear to implementations on how to act on conformant pages; don't write invalid HTML just to take advantage of what may seem to be expected or consistent behaviors, because these behaviors are meant for things like error-handling purposes, and not for authors to (ab)use.
In other words: just because you can, doesn't mean you should.
IDattributes for long periods of time will cause spontaneous combustion and nuclear war. If you are caught using multiple identical IDs the internet militia will shoot you on sight. It is about the least safe thing you can do. – zzzzBov Aug 31 '11 at 19:23