Steven Choi
0
Q:

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

New to Communities?

Join the community