2016-07-19 9 views
0

これは私が今持っているものです。これにラップされたテキストの最後のスペースを削除するにはどうすればよいですか?

enter image description here

?:

div { 
 
    padding: 10px; 
 
    background-color: green; 
 
    display: flex; 
 
    width: 160px; 
 
} 
 
p { 
 
    border: 1px solid #000000; 
 
    display: inline; 
 
}
<div> 
 
<p>Some text to be wrapped</p> 
 
</div>

それでは、どのように私はこれを変更することができます210

enter image description here

+2

これはラインボックスモデルの仕組みではありません。 –

答えて

-1

テキスト-揃えることができ、それを "正当化" します。

p { 
    border: 1px solid #000000; 
    display: inline;  
    text-align: justify; 
} 
関連する問題