空格:pre和flexbox

时间:2019-07-19 05:02:56

标签: css flexbox

我希望使white-space: predisplay: flex容器内工作,但好像flexbox完全阻止white-space: pre工作。

小提琴 https://jsfiddle.net/silverwind/dhfkap6e应该在保留用于垂直居中的flexbox的同时呈现文本Lost Whitespace。有没有在不引入包装的情况下将两者结合的方法?

2 个答案:

答案 0 :(得分:0)

  

空白CSS属性设置元素内部空白的方式   处理。

这里有2个元素,您必须在弹性项目上指定边距或填充,也可以在span标签内添加空格

<span>Lost_</span>

答案 1 :(得分:-1)

尝试一下。

div {
  white-space: pre;
  height:100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
<div>
  <span>Lost</span> <span>Whitespace</span> 
</div>