score:0

you can do something like this:

li.row.active{
  position:relative;
}
li.row.active::before{
  content: ' ';
  z-index: 999;
  position: absolute;
  bottom: 0;
  right:50%;
  width:4px;
  height:4px;
  background-color: red;
  border-radius: 999px;
}

ul {
    list-style: none;
}
li {
  display: inline;
  padding:5px;
}
<ul>
<li class="row active">
test 1
<li>
<li class="row">
test 2
<li>
<ul>


Related Query

More Query from same tag