我有以下長字幕:介紹一個<br>下768pixels設備寬度
Selbsterfahrung | Persönlichkeitsentwicklung| Gesundheitsprävention
其HTML看起來像這樣:
<h2>Selbsterfahrung <span class="divider"> | </span> Persönlichkeitsentwicklung <span class="divider"> | </span> Gesundheitsprävention</h2>
對於下768px寬的設備,我隱藏 「|」用一個簡單的
@media only screen and (max-width: 769px) {
.header-description .divider {
display: none;
}
}
但對於設備下1024像素,我得到的第一線,最後一個在第二行的前兩個單詞,像這樣:
SelbsterfahrungPersönlichkeitsentwicklung
Gesundheitsprävention
這是不是很漂亮
問題:
是否可以在1024像素以下的介質中引入<br>
代替SPAN標籤?
OR
有沒有辦法告訴HTML在新線的每個字分開在devicesd下768pixels寬?
所以我想有像一個單獨的行中的每個字:
Selbsterfahrung
Persönlichkeitsentwicklung
Gesundheitsprävention
這比我的回答更好的方法,我應該想到「能見度」 –