将弹性项目的跨轴尺寸调整为适合内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将弹性项目的跨轴尺寸调整为适合内容相关的知识,希望对你有一定的参考价值。
我有flex容器,其列方向为info__text-container,宽度为150px。在内部,我有两个跨度,其中的文本可以包装到下一行。我想要的是在文本换行时将flex项目缩小到内容,但始终保持150px。单词是动态生成的,所以我不能只使用<br/>
或smth。What I haveWhat I want
body
font-family: sans-serif;
.info
display: flex;
align-items: center;
.info__block-margin
margin-right: 48px;
.info__number
font-size: 40px;
.info__number-margin
margin-right: 20px;
.info__text-container
display: flex;
flex-direction: column;
max-width: 150px;
.info__text
min-width: 0;
font-size: 16px;
font-weight: bold;
line-height: 25px;
.info__subtext
min-width: 0;
font-size: 14px;
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
</head>
<body>
<div id="app"></div>
<div class="info info__block-margin">
<p class="info__text-container">
<span class="info__text">Socially SignificantSo </span>
<span class="info__subtext">Socially SignificantSocial</span>
</p>
<span class="info__number">98</span>
</div>
<script src="src/index.js"></script>
</body>
</html>
先谢谢您。
答案
使用当前的HTML结构,您可以将flex-basis: 0
设置为.info__text-container
类。如果您想知道将基数设置为0的方法,请参阅this answer。
以上是关于将弹性项目的跨轴尺寸调整为适合内容的主要内容,如果未能解决你的问题,请参考以下文章