how to stick a text to a div in css code example
Example: how to stick a text to a div in css
<!-- CSS Style -->
<style>
.stick{
width: 100px;
height: 100px;
position: absolute;
background-color: blue;
}
.stick::after{
content:'A Stuck Word';
position: absolute;
top: 110px;
}
</style>
<!-- CSS Style -->
<div class="stick"></div>