How to make a circle around content using CSS?

匿名 (未验证) 提交于 2019-12-03 09:05:37

问题:

Like this

With only this code

1 

回答1:

http://jsfiddle.net/MafjT/

You can use this css

span {     display: block;     height: 60px;     width: 60px;     line-height: 60px;      -moz-border-radius: 30px; /* or 50% */     border-radius: 30px; /* or 50% */      background-color: black;     color: white;     text-align: center;     font-size: 2em; } 

Because you want a circle, you need to set the same value to width, height and line-height (to center the text vertically). You also need to use half of that value to the border radius.

This solution always renders a circle, regardless of content length.


But, if you want an ellipse that expands with the content, then http://jsfiddle.net/MafjT/256/


Resize with content - Improvement

In this https://jsfiddle.net/36m7796q/2/ you can see how to render a circle that reacts to a change in content length.
You can even edit the content on the last circle, to see how the diameter changes.



回答2:

You have many answers now but I try tell you the basics.

First element is inline element so giving it margin from top we need to convert it to block element. I converted to inline-block because its close to inline and have features of block elements.

Second, you need to giving padding right and left more than top and bottom because numerals itself extend from top to bottom so it gets reasonable height BUT as we want to make the span ROUND so we give them padding more on left and right to make room for BORDER RADIUS.

Third, you set border-radius which should be more than PADDING + width of content itself so around 27px you will get required roundness but for safely covering all numerals you can set it to some higher value.

Practical Example.



回答3:

Using CSS3:

span {-moz-border-radius: 20px;     border-radius: 20px; border-color:black;     background-color:black; color:white;     padding-left:15px;     padding-right:15px;     padding-top:10px;     padding-bottom:10px;     font-size:1.3em; } 

http://jsfiddle.net/NXZnq/



回答4:

The border-radius shorthand property can be used to define all four corners simultaneously. The property accepts either one or two sets of values, each consisting of one to four lengths or percentages.

The Syntax:

[  |  ]{1,4} [ / [  |  ]{1,4} ]? 

Examples:

border-radius: 5px 10px 5px 10px / 10px 5px 10px 5px; border-radius: 5px; border-radius: 5px 10px / 10px;  

I your case

span {     border-radius: 100px;     background: #000;     color : white;     padding : 10px 15px;   } 

Check this Demo http://jsfiddle.net/daWcc/



回答5:

In addition to the other solutions, http://css3pie.com/ does a great job as a polyfill for old internet explorer versions

EDIT: not necessary as of 2016



回答6:

There are soo many tutorials out there.. try them.. here are a few..

http://dev-tips.com/featured/css-tip-how-to-make-ircles-without-images

http://blog.ardes.com/2009/3/4/css-circles

http://bryanhadaway.com/how-to-create-circles-with-css/



易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!