how to stick a text to a div in css

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>
Source

Also in CSS: