
/* <div class="circle">文字</div> */


.circle {
  background: #ffff00;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #ff0000;
  font-size: 38px;
  text-align: center;
  line-height: 60px;
}


/* border-radiusを50%に指定することで、円を作ることができます。
text-align: center;で横位置を中央に、line-heightを円の高さに合わせて80pxに指定することで縦位置を中央に調整しています。 */