インラインp
タグをdiv
コンテナに表示しようとしていますが、タグのfont-size
を変更すると問題があります。 line-height
のp
タグを調整する必要がありますか、または汎用コマンドがありますか?div内のインラインpタグ
また、margin-left
またはmargin-right
を使用して、p
タグの間にスペースを入れてください。
.container{
width:200px;
padding:10px;
display:inline;
}
.one{
float:left;
font-size:25px;
}
.two{
float:left;
}
.three{
float:left;
}
<div class="container">
<p class="one">
sentence one
</p>
<p class="two">
sentence two
</p>
<p class="three">
sentence three
</p>
</div>
はあなたが同じ行のすべてのコンテンツを必要とするわけでください、あなたの場合には、親要素に次のプロパティを追加しますか?その場合、200ピクセルの幅でテキストがラップされます。 –
「問題がありますか?何の問題? –