css:如何在中间绘制带有文本的圆?

前端之家收集整理的这篇文章主要介绍了css:如何在中间绘制带有文本的圆?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我发现这个例子stackoverflow:

Draw Circle using css alone

这是伟大的。但我想知道如何修改该示例,以便我可以在圆的中间包括文本?

我也发现这个:Vertically and horizontally centering text in circle in CSS (like iphone notification badge)

但由于某种原因,它不为我工作。当我创建以下测试代码时:

<div class="badge">1</div>

而不是一个圆,我得到一个椭圆形。
我试图玩代码,看看我如何能得到它的工作。

解决方法

JSFiddle
.circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  font-size: 50px;
  color: #fff;
  line-height: 500px;
  text-align: center;
  background: #000
}
<div class="circle">Hello I am A Circle</div>
原文链接:https://www.f2er.com/css/223480.html

猜你在找的CSS相关文章