以下は、私がテストしていて混乱したサンプルコードです。誰もが使用できる、またはIDごとに1回だけ使用する必要があると言っていますが、私はそれを複数回使用している睾丸を持っていますが、正しい出力が得られます。
私は何をすべきか?
この例では、クラスと同じように動作しています
コード:
<html>
<head>
<style>
#exampleID1 { background-color: blue; }
#exampleID2 { text-transform: uppercase; }
</style>
</head>
<body>
<p id="exampleID1">This paragraph has an ID name of "exampleID1" and has a blue CSS defined background.</p>
<p id="exampleID2">This paragraph has an ID name of "exampleID2" and has had its text transformed to uppercase letters.</p>
<address id="exampleID1">
Written by W3Schools.com<br />
<a href="mailto:us@example.org">Email us</a><br />
Address: Box 564, Disneyland<br />
Phone: +12 34 56 78
</address>
<blockquote id="exampleID1">
Here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation here is a long quotation.
</blockquote>
</body>
</html>
上記のコードを見て、正常に動作しているのに id セレクターを 1 つのページで 2 回使用してはならない理由を教えてください。