這樣子為什么不可以改變窗口中的字的大小和顏色?
<!DOCTYPE HTML>
<html>
? ? <head>
? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
? ? ? ? <title>HTML的代碼注釋</title>
? ? ? ? <style type="text/css">
? ? ? ? h1{
? ? ? ? ? ? font-size:7px;
? ? ? ? ? ? color:#100;
? ? ? ? ? ? }
? ? ? ? </style>
? ? </head>
? ? <body>
? ? ? ? <!--在線咨詢 begin-->
? ? ? ? <div>
? ? ? ? ? ? <p>一站式報名咨詢、助學答疑服務,無論是報名、選課、學習、做作業、考試、寫論文,畢業,這里都有專業老師為你答疑解惑!<a href="#">點擊進行咨詢</a></p>
? ? ? ? </div>
? ? ? ? <!--在線咨詢 end-->
? ? </body>
</html>
2019-04-20
<div></div>里面沒有<h1></h1>!??!
2019-04-20
1、<style>里h1只能改變<h1></h1>的樣式,你代碼里并<h1>標簽
如果改為
<style type="text/css">
? ? ? ? div{
? ? ? ? ? ? font-size:7px;
? ? ? ? ? ? color:#100;
? ? ? ? ? ? }
? ? ? ? </style>
就可以了。