字號(hào)為什么不能一并修改呢?
<style type="text/css">
span{
? ?font-size=30px;
? ?color:blue;?
? ?font-wight=bold;
}
</style>
</head>
<body>
? ? <p>慕課網(wǎng),<span>超酷的互聯(lián)網(wǎng)</span>、IT技術(shù)免費(fèi)學(xué)習(xí)平臺(tái),創(chuàng)新的網(wǎng)絡(luò)一站式學(xué)習(xí)、實(shí)踐體驗(yàn);<span>服務(wù)及時(shí)貼心</span>,內(nèi)容專業(yè)、<span>有趣易學(xué)</span>。專注服務(wù)互聯(lián)網(wǎng)工程師快速成為技術(shù)高手!</p>
2016-12-22
span里的等號(hào)改冒號(hào),然后font-wight改font-weight
2016-12-22
首先樣式中的等號(hào)改成冒號(hào),其次font-wight改為font-weight。
2016-12-22
<style type="text/css">
span{
????font-size:30px;
????color:blue;
????font-weight:bold;
????????}
</style>
</head>
<body>
2016-12-22
<style type="text/css">
span{
????font-size:30px;
????color:blue;
????font-weight:bold;
????????}
</style>
</head>
<body>
2016-12-22
<style type="text/css">
span{
font-size:30px;
color:blue;
font-weight:bold;
}
</style>
</head>
<body>
2016-12-22
把等號(hào)改為冒號(hào)