This is the code that I added to my Stylesheet:
.friend {
border:4px dashed 008000;
}
.enemy {
border:2px dashed 008000;
}
.family {
border:2px dashed 008000;
}
#archnemesis {
border:4px solid 008000;
}
* {
border:4px solid 008000;
}
Furthermore, I included this code in my HTML tab:
<div class="family" id="archnemesis"></div>
<div class="friend" id="archnemesis"></div>
<div class="enemy"></div>
Despite implementing these changes, the results are not displaying on the webpage. Could someone please assist me in identifying any errors in the code?