2
글리프 콘 정렬로 고생하고있는 중, 분명히 글꼴 크기 조정이 어떻게 작동하는지 이해할 수 없습니다. In this fiddle 동일한 글꼴 크기에서 기호가 포함 된 두 개의 div가 있지만 결국 다른 높이가됩니다.글꼴 크기 란 무엇입니까? 왜이 두 상자의 높이가 다른가요?
body {
line-height: 1;
font-family: Helvetica;
font-size: 60px;
}
.wrapper {
background: lightblue;
width: 300px;
height: 100px;
position: relative;
}
.left {
width: 50%;
position: absolute;
left: 0;
background: darkred;
}
.right {
width: 50%;
position: absolute;
right: 0;
background: darkgreen;
}
.text::before {
content: "60px";
}
.myglyphicon {
font-family: 'Glyphicons Halflings';
}
.myglyphicon::before {
content: "\e046";
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.css" rel="stylesheet"/>
<div class="wrapper">
<div class="left">
<span class="myglyphicon"></span>
</div>
<div class="right">
<span class="text"></span>
</div>
</div>
다른 글꼴 종류가 같은 글꼴 크기에 대해 서로 다른 높이를 생성 할 수 있지만, div.right
는 대형 범위를 무시하고 올바른 (라인을 가지고 왜 난 아직도 이해가 안 보인다 -) 높이가 60px이지만 div.left
은 아닙니까? 스팬 높이가 4px 차이지만 div는 9px 차이가 있습니다.
좋아요, 아마도 div는 왼쪽 스팬이 이상하게 배치 되었기 때문에 다르게 동작하지만, 왜 그렇습니까? 하드 코딩 차원은 해결책이 아닙니다. – Steven
치수를 하드 코딩하지 않고도 내 대답을 편집했습니다. 스팬이 블록처럼 동작하도록하면 높이가 올바르게 설정됩니다. 이 문제가 발생하는 이유는 모르겠지만 ... – Dais
가상 요소는 'Glyphicons Halflings'이었지만 포함 된 범위는 기본 글꼴이었습니다. 글꼴 유형이 다른 글꼴 유형은 같은 글꼴 크기에서 다른 줄 높이를 생성 할 수 있습니다. 그 이유는 길이가 67px 인 반면 의사 요소는 71px입니다. 그런 다음 두 개의 다른 경계 상자를 기준선으로 배치했습니다. 그것이 포지셔닝이 이상하게 보였던 이유입니다. div가 높이를 결정하는 방법에 대한 질문은 아직 남아 있습니다. – Steven