私はその中のポストにコメントの数を持っているバブルの背景imgでdivを作ろうとしています。私はテキストの内側にテキストの幅を制御したいのですが、divの高さは静的なままにしておきます。背景内のテキストによって制御される背景の幅。高さは固定されています
私は今ここにあるコードです。内部の値が3桁の数字の場合は大丈夫ですが、2桁の数字かそれ以外の3桁の数字に変更すると、バブルは垂直方向と水平方向に移動し、テキストはもう中央揃えされません。
#wrapper {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
min-width: 100%;
align-items: baseline;
}
#comment_text {
display: flex;
font-weight: bold;
}
#comment_img {
display: flex;
background: url('https://rajohan.no/img/icons/picons_basic_1/SVG/basic1-021_chat_comment_bubble.svg');
background-repeat: no-repeat;
background-size: 100%;
padding: 21px;
margin-left: 10px;
}
#comment_count {
display: flex;
font-weight: bold;
}
<div id="wrapper">
<div id="comment_text">
COMMENTS
</div>
<div id="comment_img">
<div id="comment_count">
160
</div>
</div>
</div>
ありがとう!あなたが追加したもの+ sideroxylonの答えがそれを完璧にしました! – Rajohan