Trying to center and fix a div at the bottom of another div has proven challenging for me. I've attempted using the following code snippet, but without success. Can anyone guide me on how to achieve this?
#clockPosition {
margin: auto auto 0 auto;
width: 30%;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.parent-column {
margin: 1%;
}
<div class="parent-column">
<>
<div id="clockPositon">Content here</div>
</div>
Displayed below is an image depicting the desired final outcome:
Appreciate any assistance in advance :)