2016-06-18 4 views
0

マイコード:https://jsfiddle.net/xgckxtes/1/ここでテキストを下に移動するには?

htmlのみを使用してテキストを下位に移動するにはどうすればよいですか?

<div style="display: block;background-color:black; color:white; width: 266px; height:266px;x; border-radius:50px"> 

<p><q>Never let society to turn you into a grain of sand on the beach. Be different, be individual. Refuse to look alike with others. Leave your herd, only then you will have a real name and till then your name will remain as the grain of sand.</q> - <em>Mehmet Murat ildan</em></p> 

答えて

0
<div style="display: table;background-color:black; color:white; width: 266px; height:266px;x; border-radius:50px"> 

<p style="display: table-cell; vertical-align: middle;"><q>Never let society to turn you into a grain of sand on the beach. Be different, be individual. Refuse to look alike with others. Leave your herd, only then you will have a real name and till then your name will remain as the grain of sand.</q> - <em>Mehmet Murat ildan</em></p> 
+0

下チェンジ「垂直整列でテキストを揃える必要がある場合:真ん中;へvertical-align:bottom; " – Nehemiah

+0

テキストの高さや高さを指定する方法はありますか? – assaassa

+0

Never let society to turn you into a grain of sand on the beach. Be different, be individual. Refuse to look alike with others. Leave your herd, only then you will have a real name and till then your name will remain as the grain of sand. - Mehmet Murat ildan

Nehemiah

0

表示にスタイルを変更します。テーブルのセルを、縦線:中央;

パディングプロパティを追加します。それはより美しくなります。トップ

を調整する

パディングトップ例えば:

<div style="display:table-cell; vertical-align: middle; background-color:black; 
padding:20px; 


color:white; width: 266px; height:266px;x; border-radius:50px"> 

<p><q>Never let society to turn you into a grain of sand on the beach. Be different, be individual. Refuse to look alike with others. Leave your herd, only then you will have a real name and till then your name will remain as the grain of sand.</q> - <em>Mehmet Murat ildan</em></p> 

</div> 

修正フィドル:https://jsfiddle.net/djsreeraj/84k62frb/2/

0
<style> 
    .item { width:300px; /*width:100%;*/ background-color:black; color:#FFF; border-radius:50px; padding:20px; } 
    .item p { font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:20px; padding:0; } 
</style> 

<div class="item"> 
<p><q>Never let society to turn you into a grain of sand on the beach. Be different, be individual. Refuse to look alike with others. Leave your herd, only then you will have a real name and till then your name will remain as the grain of sand.</q> - <em>Mehmet Murat ildan</em></p> 
</div> 
関連する問題