I want a matte circular shape with a thin border around it, like this:
.circle {
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.1em;
}
.ci {
  margin: 0.2em;
  height: 1.1em;
  width: 1.1em;
  background-color: black;
  border-radius: 50%;
}Bang:
<div class="circle">
  <div class="ci"></div>
</div> Morebut it needs to be inline, i.e. no line break after 'Bang:' and no line break before 'More'. If I exchange the divs for spans or say display: inline for the divs, the shape is gone.
https://www.w3schools.com/code/tryit.asp?filename=GK4AJ5M28W16
 
     
    