0
float:left
を使用して、タイトルと同じ行に字幕を残そうとしています。浮動小数点:テキストと一緒に使用できない
ただし、タイトルが改行されると、字幕も改行されます。
p {
font-family: Montserrat;
font-size: 24px;
margin: 0px;
padding: 0px;
line-height: 100%;
float: left;
}
.other {
font-size: 14px;
font-family: Montserrat;
padding: 0px;
margin: 0px;
position: relative;
top: 3px;
color: #ff442b;
}
<p><b>Title goes here. </b>
</p>
<p class="other">Subtitle</p>
<br>
<br>
<br>
<div>
<p><b>Title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here, title goes here. </b>
</p>
<p class="other">Subtitle</p>
</div>
タイトルが破られる前に実際に字幕が改行されます。その他の情報 –