2016-08-02 6 views
0

私は初心者ですので、私のサイトのテキストを正当化しようとするといくつかの問題があります。初心者:テキストを調整する

誰かが私を助けることができたら本当にありがとう!

HTML:

<div class="about__entry sm-two-thirds"> 
    <p>We believe in the power of authentic and genuine music, not manufactured artists. We believe in the freedom of music, expression, and creativity. We aim to give artists tools that will empower them to make the music they love and give them the ability to take their careers into their own hands.</p> 
</div><!-- end .about__entry --> 

CSS

.About__entry { 
    text-align: justify; 
    text-justify: inter-word; 
    text-align-last:center; 
} 

答えて

4

CSSは、大文字と小文字が区別され、例えばクラス名用。ここで

About__entry != about__entry

+0

はい、ちょうどことを見ました!どうもどうも! :) –

0

固定例です:https://jsfiddle.net/v6L94v27/

あなただけのクラス名の大文字と小文字を一致させるために必要な(クラス名は大文字のAを持っていた)

<div class="About__entry sm-two-thirds"> 
     <p>We believe in the power of authentic and genuine music, not manufactured artists. We believe in the freedom of music, expression, and creativity. We aim to give artists tools that will empower them to make the music they love and give them the ability to take their careers into their own hands.</p> 
    </div><!-- end .about__entry --> 
+0

クイックレスポンスありがとう!ほんとうにありがとう! –