웹 디자인을 위해 최근에 나는 고정 된 원 문제에서 중심에 있고 알 수없는 양의 텍스트를 해결해야했으며 원 / 텍스트 콤보를 보는 다른 사람들을 위해 여기에서 해결책을 공유 할 것이라고 생각했습니다.
내가 가진 주요 문제는 텍스트가 종종 원의 경계를 깰 수 있다는 것입니다. 이 문제를 해결하기 위해 4 div를 사용했습니다. 원의 최대 (고정) 경계를 지정한 하나의 직사각형 컨테이너. 그 안에는 너비와 높이가 100 %로 설정된 원을 그리는 div가 있으므로 부모의 크기를 변경하면 실제 원의 크기가 변경됩니다. 그 안에 %를 사용하여 텍스트가 원을 떠나는 것을 방지하는 텍스트 경계 영역을 만들 수있는 다른 직사각형 div가 있습니다. 마지막으로 텍스트와 수직 중심에 대한 실제 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에서 테두리 색상의 주석 처리를 제거하여 어떻게 제한되는지 확인할 수 있습니다.
알아 두어야 할 사항 : 너무 많은 텍스트를 넣거나 너무 긴 단어 / 깨지지 않은 텍스트를 사용하면 여전히 원의 경계를 벗어날 수 있습니다. 여전히 알려지지 않은 텍스트 (예 : 사용자 입력)에는 적합하지 않지만 저장해야 할 최대 텍스트 양이 무엇인지 모호하게 알고 원 크기와 글꼴 크기를 적절하게 설정하면 가장 잘 작동합니다. 물론 텍스트 컨테이너 div를 설정하여 오버플로를 숨길 수는 있지만 "깨진"것처럼 보일 수 있으며 실제로 디자인에서 최대 크기를 올바르게 대체하는 것은 아닙니다.
이것이 누군가에게 유용하기를 바랍니다! HTML / CSS는 나의 주요 분야가 아니므로 개선 될 수 있다고 확신합니다!