2017-02-02 3 views
0

私はhtmlとcssに新しいです。私はウェブページを作成しようとしています。私の質問は、どのように私は右にテキストを上下に並べるので、テキストは出入りしないのですか?これは私が得ている問題です。この絵に示されていますimage右に単語を縦に並べると、テキストの出入りができなくなりますか?

は、私はそう基本的に私は、テキストはきちんとした方法で整列することは、このthe effect I want

に見えるようにしたいです。

+1

私たちはあなたのコードを参照する必要があります。あなたの質問に[mcve]を投稿してください。 – j08691

+1

質問をGoogleに入力する方がずっと簡単でしたか? –

答えて

1

text-align: justify;は、要素内のテキストを正当化します。 text-justifyのプロパティを参照することもできます。

p { text-align: justify; max-width: 200px; }
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 
 
</p>

関連する問題