1
今天早上處理一些排版的東西。怎麼只有我的.quote :: before工作。 http://codepen.io/samducker/pen/WpoBOB爲什麼我的::工作之前,而不是我::之後不。幫助css hivemind
編輯:當我調整它的大小時,它開始出現在文本換行時的第一行下面。
<h1 class="quote">“Drink better not more”</h1>
<p><span class="first-letter">A</span> week designed for cocktail lovers, Loves Cocktails is an exciting new 7-day
long festival arriving in Nottingham this April.</p>
.quote {
font-family: $serif-font;
text-align: center;
font-size: 4rem;
padding: 0.3em 0em;
}
.quote::before, .quote::after {
content: "";
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
height: 8px;
width: 32px;
background: #ec3723;
}
p {
max-width: 40em;
margin: auto;
}
.first-letter {
font-size: 3rem;
margin: 20px;
float: left;
}
感謝您的答覆我期待下面創建(之後)的文本,以便鏡像到它上面的一個小行。不要刪除調整大小。 –
明白了,等待將會修復 –
@ SamDucker完成 –