這是一個頂級問題,更基於我對css的無知。我試圖在css中創建兩個段落樣式,一個是20px字體大小,另一個是14px字體大小。不過,無論我看起來如何,字體都是一樣的。附上的是我現在正在做的事情的一個例子,如果任何人都能指出我的解決方案,我將非常感謝。爲了避免不必要的代碼,我爲了不少的原因而放棄了。在css中設置多個段落樣式
html代碼看起來像這樣
<p>This is the html section with 20 px font</p>
<p class="new_font"> This is the html section with 8px font</p>
/* I have also tried this with a <div class="new_font"> and and <p id="new_font>"*/
的CSS代碼如下所示
p {
/*text-indent: 1.5em;*/
font: 20px Helvetica, Sans-Serif;
color: white;
overflow: hidden;
padding: 15px;
text-align: justify;
background: rgb(0, 0, 0,0.3); /* fallback color */
background: rgba(0, 0, 0, 0.7);
}
p new_font {
/*text-indent: 1.5em;*/
font: 14px Helvetica, Sans-Serif;
color: white;
overflow: hidden;
padding: 15px;
text-align: justify;
background: rgb(0, 0, 0,0.3); /* fallback color */
background: rgba(0, 0, 0, 0.7);
}
p new_font'只要改變''到p.new_font' –
嘗試是這樣的https://jsfiddle.net/2Lzo9vfc/113/ –
或者乾脆.new_font – progsource