1
です。flex div
の束にはそれぞれspan
の数値が含まれています。数字は2,3,4〜7桁までです。 div
のfont-size
をできるだけ大きく設定して、内部の数字がオーバーフローしないようにしたいと考えています。私はdivの幅を計算し、それをスパンの長さで割った。いくつかの小さな表示サイズでは、テキストは小さくなる。何か案は?テキストの最大幅は
$('.paramItem').each(function() {
$(this).css({
'font-size': $(this).width()/$(this).html().length/2
})
});
.paramItem {
display: flex;
flex: 1 1 0;
flex-direction: column;
justify-content: center;
line-height: 1;
position: relative;
text-align: center;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="paramItem ECG">
<small>ECG</small>
<span>85</span>
</div>
<div class="paramItem NIBP">
<small>ECG</small>
<span>120/50</span>
</div>