如何改变CSS中的换行方向?

时间:2017-04-19 08:00:19

标签: html css html5 css3 flexbox

pdiv,与正常段落不同。它从右下角开始,有点像这样

<p>

主要问题是我在不同方向输入更多文字换行符。

发生了什么。

enter image description here

我想要的。

enter image description here

这是我的样式表:

div{
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
  }

p{
   align-self: flex-end;
 }

甚至可能吗?

1 个答案:

答案 0 :(得分:3)

你想要这个吗? See this fiddle

div{
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   background: red;
   width: 200px;
   height: 200px; 
  }

p{
   align-self: flex-end;
   color: #fff;
   text-align: right;
 }