css: วิธีการวาดวงกลมด้วยข้อความที่อยู่ตรงกลาง?


156

ฉันพบตัวอย่างนี้ใน stackoverflow:

วาดวงกลมโดยใช้ CSS เพียงอย่างเดียว

อันไหนดี แต่ฉันต้องการทราบวิธีแก้ไขตัวอย่างนั้นเพื่อให้ฉันสามารถรวมข้อความไว้ตรงกลางของวงกลมได้

ฉันยังพบสิ่งนี้: ข้อความตรงกลางและแนวนอนในวงกลมใน CSS (เช่นป้ายแจ้งเตือน iphone)

แต่ด้วยเหตุผลบางอย่างมันไม่ทำงานสำหรับฉัน เมื่อฉันสร้างรหัสทดสอบต่อไปนี้:

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

แทนที่จะเป็นวงกลมฉันได้รูปวงรี ฉันพยายามที่จะเล่นกับรหัสเพื่อดูว่าฉันสามารถทำงานได้

คำตอบ:


328

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>


8
@dot: ไม่จริงฉันทำ - bryanhadaway.com/how-to-create-circles-with-css
Jawad

3
ถ้าคุณสามารถทำให้border-radius:50%;ที่ทำให้เหตุการณ์รหัสของคุณสง่างามมากขึ้นและพกพาโดยไม่ต้องเปลี่ยนแอตทริบิวต์นี้ทุกครั้งที่อยู่บนพื้นฐานของความกว้างและความสูง;)
bonCodigo

14
โดยส่วนตัวฉันจะลบแอตทริบิวต์ line-height และเพิ่ม vertical-align: middle; จอแสดงผล: ตารางเซลล์; ด้วยวิธีนี้บรรทัดข้อความของคุณจะยังคงอยู่กึ่งกลาง jsfiddle.net/z9bLtw99
ministe2003

3
เกี่ยวกับหลายบรรทัด
Henry Zhu

1
@DamjanPavlica ดูการอัปเดตล่าสุดของคำตอบที่ไม่ได้ตั้งค่าความกว้างหรือความสูงอย่างชัดเจน ใช้ได้กับหลายสายเช่นคุณสามารถตรวจสอบการแสดงสดบน jsfiddle ได้
Jose Rui Santos

57

หากเนื้อหาของคุณกำลังจะปิดและมีความสูงที่ไม่รู้จักนี่คือทางออกที่ดีที่สุดของคุณ:

http://cssdeck.com/labs/aplvrmue

.badge {
  height: 100px;
  width: 100px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%; /* may require vendor prefixes */
  background: yellow;
}


6
สิ่งนี้สร้างวงรีไม่ใช่วงที่สมบูรณ์แบบ
Sophivorus

2
นี่คือทางออกที่แท้จริง แม้ว่าฉันจะต้องพูดถึงนั่นdisplay: absoluteก็เป็นการทำลายการรักษา - แต่ทางออกที่ง่ายคือห่อมันไว้ใน div อื่น
OndřejŽelazko

1
สร้างวงกลมที่สมบูรณ์แบบ (ไม่ใช่รูปวงรี) Diva wrapper ยังเป็นความคิดที่ดีเมื่อใช้ตำแหน่งที่แน่นอนหรือแน่นอน
krivar

2
สำหรับการกำหนดตำแหน่งที่แน่นอนคุณต้องใช้เสื้อคลุม แต่มันให้รูปวงรีเนื่องจากความกว้างสูงสุดที่สามารถใช้ได้คือ 180px ดังนั้นหากคุณระบุความกว้างขั้นต่ำเป็นความกว้างที่คุณต้องการและตั้งค่าความสูงเป็นค่านั้น คุณจะได้วงกลม มิฉะนั้นคุณจะได้รับรูปวงรีเกินความกว้างและความสูง> 180px
mutp

27

คุณสามารถใช้ flexboxCSS3

HTML:

<div class="circle-with-text">
    Here is some text in circle
</div>

CSS:

.circle-with-text {
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  text-align: center;
  display: flex;
}

สิ่งนี้จะช่วยให้คุณมีบรรทัดเดียวในแนวตั้งและแนวนอนตรงกลางและข้อความหลายบรรทัด


1
ทางออกที่ดีที่สุดในโลกอุดมคติ น่าเศร้าที่มีบั๊กข้ามเบราว์เซอร์จำนวนมากในการใช้งาน flexbox: github.com/philipwalton/flexbugs
jimiayler

สำหรับ IE: `` 'display: -ms-flexbox `` `
Michael Guild

11

ฉันคิดว่าคุณต้องการที่จะเขียนข้อความในวงรีหรือวงกลม? ทำไมไม่ลองอันนี้

<span style="border-radius:50%; border:solid black 1px;padding:5px">Hello</span>


8

สำหรับการออกแบบเว็บฉันเพิ่งได้รับเมื่อเร็ว ๆ นี้ฉันต้องแก้ปัญหาข้อความที่เป็นศูนย์กลางและไม่ทราบจำนวนหนึ่งในวงกลมถาวรและฉันคิดว่าฉันจะแบ่งปันวิธีแก้ปัญหาที่นี่สำหรับคนอื่นที่มองหาคอมโบวงกลม / ข้อความ

ปัญหาหลักที่ฉันมีคือข้อความมักจะทำให้ขอบเขตของวงกลมแตกหัก เพื่อแก้ปัญหานี้ฉันลงเอยด้วยการใช้ 4 divs หนึ่งคอนเทนเนอร์สี่เหลี่ยมที่ระบุขอบเขตสูงสุด (คงที่) ของวงกลม ข้างในนั้นจะเป็น div ที่วาดวงกลมโดยตั้งค่าความกว้างและความสูงเป็น 100% ดังนั้นการเปลี่ยนขนาดของพาเรนต์จะเปลี่ยนขนาดของวงกลมที่แท้จริง ข้างในนั้นจะเป็นอีกกองสี่เหลี่ยมที่ใช้% ของจะสร้างขอบเขตของข้อความเพื่อป้องกันไม่ให้ข้อความใด ๆ ออกจากวงกลม (ส่วนใหญ่) จากนั้นในที่สุด div ที่แท้จริงสำหรับข้อความ

มันสมเหตุสมผลมากกว่าเป็นรหัส:

/* Main Container -  this controls the size of the circle */
.circle_container
{
	width : 128px;
	height : 128px;
	margin : 0;
	padding : 0;
/*	border : 1px solid red; */
}

/* Circle Main draws the actual circle */
.circle_main
{
	width : 100%;
	height : 100%;
	border-radius : 50%;
	border : 2px solid black;	/* can alter thickness and colour of circle on this line */
	margin : 0;
	padding : 0;
}

/* Circle Text Container - constrains text area to within the circle */
.circle_text_container
{
	/* area constraints */
	width : 70%;
	height : 70%;
	max-width : 70%;
	max-height : 70%;
	margin : 0;
	padding : 0;

	/* some position nudging to center the text area */
	position : relative;
	left : 15%;
	top : 15%;
	
	/* preserve 3d prevents blurring sometimes caused by the text centering in the next class */
	transform-style : preserve-3d;
	
	/*border : 1px solid green;*/
}

/* Circle Text - the appearance of the text within the circle plus vertical centering */
.circle_text
{
	/* change font/size/etc here */
	font: 11px "Tahoma", Arial, Serif;	
	text-align : center;
	
	/* vertical centering technique */
	position : relative;
	top : 50%;
	transform : translateY(-50%);
}
<div class="circle_container">
	<div class="circle_main">
		<div class="circle_text_container">
			<div class = "circle_text">
				Here is an example of some text in my circle.
			</div>
		</div>
	</div>
</div>			

คุณสามารถยกเลิกการใส่เครื่องหมายสีของเส้นขอบบนคอนเทนเนอร์เพื่อดูว่ามีการ จำกัด อย่างไร

สิ่งที่ต้องระวัง: คุณยังสามารถแบ่งขอบเขตของวงกลมได้หากคุณใส่ข้อความมากเกินไปหรือใช้คำ / ข้อความที่ไม่ขาดซึ่งยาวเกินไป มันยังไม่เหมาะสำหรับข้อความที่ไม่รู้จักอย่างสมบูรณ์ (เช่นการป้อนข้อมูลของผู้ใช้) แต่ทำงานได้ดีที่สุดเมื่อคุณรู้ว่าอะไรคือจำนวนข้อความที่ใหญ่ที่สุดที่คุณต้องจัดเก็บและตั้งขนาดวงกลมและขนาดตัวอักษรให้เหมาะสม คุณสามารถตั้งค่า div คอนเทนเนอร์ข้อความเพื่อซ่อนโอเวอร์โฟลว์ของหลักสูตรใด ๆ แต่นั่นอาจจะดู "เสีย" และไม่สามารถแทนที่การใช้งานจริงสำหรับขนาดสูงสุดในการออกแบบของคุณได้

หวังว่านี่จะเป็นประโยชน์กับใครบางคน! HTML / CSS ไม่ใช่วินัยหลักของฉันดังนั้นฉันแน่ใจว่ามันสามารถปรับปรุงได้!


8

วาดวงกลมที่มีข้อความตรงกลางด้วยแท็ก HTML และไม่มี CSS

HTML มีแท็ก SVG สำหรับสิ่งนี้ คุณสามารถปฏิบัติตามแนวทางมาตรฐานนี้หากคุณไม่ต้องการใช้ CSS

 <svg width="100" height="100">
   <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="white" />
     Sorry, your browser does not support inline SVG.
   <text fill="#000000" font-size="18" font-family="Verdana"
     x="15" y="60">ASHISH</text>
 </svg>

ป้อนคำอธิบายรูปภาพที่นี่


สำหรับการอ้างอิงในอนาคตสำหรับผู้อ่านทั่วไป: เป็นมองเห็นได้ในภาพรหัสและข้อความที่เป็นศูนย์กลางเพียงเพราะfont-size, font-family, xและyสายขึ้น สำหรับผู้ที่ไม่มี Verdana ติดตั้งอยู่จะไม่อยู่กึ่งกลาง การใช้x="50%" y="50%" dominant-baseline="middle" text-anchor="middle"ไม่สามารถแก้ไขปัญหาได้เช่นกัน
LosManos

6

หากเป็นข้อความเพียงบรรทัดเดียวคุณสามารถใช้คุณสมบัติความสูงบรรทัดโดยมีค่าเท่ากับความสูงองค์ประกอบ:

height:100px;
line-height:100px;

หากข้อความมีหลายบรรทัดหรือหากเนื้อหาเป็นตัวแปรคุณสามารถใช้ padding-top:

padding-top:30px;
height:70px;

ตัวอย่าง: http://jsfiddle.net/2GUFL/


6

แน่นอนคุณต้องใช้แท็กในการทำเช่นนั้น หนึ่งในการสร้างวงกลมและอื่น ๆ สำหรับข้อความ

โค้ดบางส่วนอาจช่วยคุณได้

#circle {
    background: #f00;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    color:black;

}
.innerTEXT{
    position:absolute;
    top:80px;
    left:60px;
}

<div id="circle">
    <span class="innerTEXT"> Here a text</span>
</div>

ตัวอย่างสดที่นี่http://jsbin.com/apumik/1/edit

ปรับปรุง

ที่นี่น้อยลงด้วยการเปลี่ยนแปลงเล็กน้อย

http://jsbin.com/apumik/3/edit


ขอบคุณ! ฉันเข้าใจตัวอย่างของคุณดีกว่าตัวอย่างที่พบในโพสต์ ( stackoverflow.com/questions/4801181/ … ) แต่ฉันต้องการที่จะเข้าใจว่าทำไมตัวอย่างดังกล่าวไม่ทำงานสำหรับฉัน ...
dot

ดูเหมือนว่าพวกเขาได้ทำสิ่งเดียวกับที่คุณทำ แต่เพิ่งรวมกันเป็นหนึ่งคลาสใน css ... ?
จุด

ใช่ฉันเพิ่งสังเกตเห็นว่าฉันทำเช่นเดียวกัน
Ligth

ให้ secound อัปเดตโพสต์ของฉันและรหัสของฉันเพื่อให้ดีขึ้น: D
Ligth


3

หากคุณใช้เฟรมเวิร์กพื้นฐาน 5 และเข็มทิศคุณสามารถลองทำสิ่งนี้ได้

.sass อินพุต

$circle-width: rem-calc(25) !default;
$circle-height: $circle-width !default;
$circle-bg: #fff !default;
$circle-radius: 50% !default;
$circle-line-height: $circle-width !default;
$circle-text-align: center !default;

@mixin circle($cw:$circle-width, $ch:$circle-height, $cb:$circle-bg, $clh:$circle-line-height, $cta:$circle-text-align, $cr:$circle-radius) {
    width: $cw;
    height: $ch;
    background: $cb;
    line-height: $clh;
    text-align: $cta;
    @include inline-block;
    @include border-radius($cr);
}

.circle-default {
    @include circle;
}

.css เอาท์พุท

.circle-default {
  width: 1.78571rem;
  height: 1.78571rem;
  background: white;
  line-height: 1.78571rem;
  text-align: center;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

2

รับสิ่งนี้จากหน้า YouTube ซึ่งมีการตั้งค่าง่าย ๆ บำรุงรักษาอย่างแน่นอนและนำมาใช้ใหม่

.circle {
    position: absolute;
    top: 4px;
    color: white;
    background-color: red;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 18px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}
<div class="circle">2</div>


2

วิธีแก้ปัญหาบางอย่างที่นี่ใช้ได้ไม่ดีสำหรับฉันในแวดวงเล็ก ๆ ดังนั้นฉันจึงแก้ปัญหานี้โดยใช้ตำแหน่งสัมบูรณ์ ol

การใช้ SASS จะมีลักษณะเช่นนี้:

.circle-text {
    position: relative;
    display: block;
    text-align: center;
    border-radius: 50%;
    > .inner-text {
        display: block;
        @extend .center-align;
    }
}

.center-align {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@mixin circle-text($size) {
    width: $size;
    height: $size;
    @extend .circle-text;
}

และสามารถใช้งานได้เช่น

#red-circle {
    background-color: red;
    border: 1px solid black;
    @include circle-text(50px);
}

#green-circle {
    background-color: green;
    border: 1px solid black;
    @include circle-text(150px);
}

ดูตัวอย่างได้ที่https://codepen.io/matheusrufca/project/editor/DnYPMK

ดูตัวอย่างเพื่อดู CSS เอาท์พุท


0

วิธีหนึ่งที่ทำได้คือใช้ flexbox เพื่อจัดเรียงข้อความตรงกลาง วิธีที่ฉันพบว่าทำมีดังต่อไปนี้:

HTML:

<div class="circle-without-text">
  <div class="text-inside-circle">
    The text
  </div>
</div>

CSS:

.circle-without-text {
    border-radius: 50%;
    width: 70vh;
    height: 70vh;
    background-color: red;
    position: relative;
 }

.text-inside-circle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
 }

นี่คือ plnkr: https://plnkr.co/edit/EvWYLNfTb1B7igoc3TZx?p=preview


0

ใช้รหัสนี้มันจะตอบสนองด้วย

<div class="circle">ICON</div>

.circle {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 0;
  padding: 50% 0;
  border-radius: 50%;
  /* Just making it pretty */
  -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  background: #38a9e4;
  color: white;
  font-family: Helvetica, Arial Black, sans;
  font-size: 48px;
  text-align: center;
}

0

.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 CircleHello I am A CircleHello I am A CircleHello I am A CircleHello I am A CircleHello I am A CircleHello I am A CircleHello I am A CircleHello I am A Circle</div>


นี่เป็นสำเนาของคำตอบอื่น ๆ ความอัปยศ. -1
Tim Gautier

0

ฉันรวมคำตอบบางอย่างจากคนอื่นเข้าด้วยfloatและrelativeมันให้ผลลัพธ์ที่ฉันต้องการ

ใน HTML ฉันใช้ div ฉันใช้ภายในliสำหรับแถบการนำทาง

.large-list-style {
    float: left;
    position: relative;
    top: -8px;

    border-radius: 50%;

    margin-right: 8px;

    background-color: rgb(34, 198, 200);

    font-size: 18px;
    color: white;
}
    .large-list-style:before,
    .large-list-style:after {
        content: '\200B';
        display:inline-block;
        line-height:0;

        padding-top: 50%;
        padding-bottom: 50%;
    }
    .large-list-style:before {
        padding-left: 16px;
    }
    .large-list-style:after {
        padding-right: 16px;
    }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.