I am working on an HTML document that contains multiple instances of ids and classes. Here is a snippet of the code:
<!DOCTYPE html>
<html>
<body>
<div id="Caption_G" class="editor-group">
editor-group<br />
<div id="Caption_L" class="editor-label ">
editor-label
</div>
<div id="Caption_F" class="editor-field ">
editor-field
</div>
</div>
<div id="Caption_G" class="editor-group">
editor-group<br />
<div id="Caption_L" class="editor-label ">
editor-label
</div>
<div id="Caption_F" class="editor-field ">
editor-field
</div>
</div>
<div id="Caption_G" class="editor-group">
editor-group<br />
<div id="Caption_L" class="editor-label ">
editor-label
</div>
<div id="Caption_F" class="editor-field ">
editor-field
</div>
</div>
</body>
</html>
I want to style only the third occurrence of the "Caption_F" id using CSS. Can someone help me with this? Any suggestions or assistance would be greatly appreciated!