Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
新手在这里,所以如果这是一个简单的答案,我深表歉意。我来自印刷界,我们经常在文本开头段落后面使用一个圆圈或半圆圈。是否可以在 HTML5 和 CSS3 中做同样的事情?
我有创建圆和样式的代码,但我不知道如何使文本显示在圆的顶部。
您可以尝试border-radius:50%在包含您的文本的 div 上使用。或者这不是你的意思吗?
border-radius:50%
<body> <div> <p>this is content</p> </div> </body> div {background:red;height:50px;width:50px;border-radius:50%;padding:5%;text-align:center;} p {margin:0;}
http://jsfiddle.net/NAvbX/