有没有办法删除此弹性项目中的多余空白?

时间:2019-04-11 18:23:45

标签: css flexbox

我所指的空格是文本右侧(灰色)

.icon {
  background: green;
  width: 20px;
  height: 27px;
  flex-shrink: 0;
  margin-right: 10px;
}

a {
  display: flex;
  width: 200px;
  align-items: center;
  background: pink;
  padding: 0 20px;
}

.text {
  background: #ccc;
  min-width: 0;
}
<a href="#">
  <span class="icon"></span>
  <span class="text">Demander un prix au concessionnaire</span>
</a>

1 个答案:

答案 0 :(得分:0)

尝试:

.text {
 white-space: pre-line;
}

https://css-tricks.com/almanac/properties/t/text-overflow/