根據此鏈接元素元素的CSS規則http://www.w3schools.com/cssref/css_selectors.asp不適用於以下代碼。這有什麼問題?css不適用於使用此規則的「元素元素」。這個代碼有什麼問題?
<!DOCTYPE html>
<html>
<head>
<style>
p div{
text-align: center;
color: red;
}
</style>
</head>
<body>
<h1 class="">This heading will not be affected</h1>
<p><div class="center">This paragraph will be red and center-aligned.</div></p>
</body>
</html>
這可能重複:http://stackoverflow.com/questions/8397852/why-p-tag-cant-contain-div-tag-inside-it –