一,設定文字標籤label的css有兩種:

(1)style
(2)class

二,class寫法:

<style>
.red
{
font-size: 50px;
font-weight: 900;
font-family: 標楷體;
background-color: red;
}
</style>
... ... <label class="red">生日快樂</label>

三,javascript設定class的方法:

document.getElementById('d1').className = 'red'