.pen {
height: 100px;
width: 100px;
border: 2px dashed brown;
position: relative;
}
#puppy {
position: absolute;
right: 80px;
bottom: 0px;
}
<div class="pen"> <span id="puppy">🐶</span> </div>
- top-right corner
- bottom-right corner
- top-left corner
- bottom-left corner
Correct Answer:
- bottom-left corner