在學html和css,寫了很簡單的,代碼如下
html代碼
<!DOCTYPE html>
yes,it is a div example for test11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
css代碼
#02{
border: solid;
border-width: 2px;
border-color: cornflowerblue;
width: 200px;
height: auto;
text-align: center;
}
測試時候文本一點改變也沒有,求問大神這是怎麼回事
css id選擇器不能數字開頭,而且你id也沒有。。外部css注意檢查路徑對了沒有
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
#d02{
border: solid;
border-width: 2px;
border-color: cornflowerblue;
width: 200px;
height: auto;
text-align: center;
}
</style>
<title>02</title>
</head>
<body>
<div id="d02">
<h1>it's a div temp</h1>
<p>yes,it is a div example for test11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111</p>
</div>
</body>
</html>