批改状态:合格
老师批语:
<h1 style="color: red;">php.cn</h1>
<style>h1 { color: yellow;}</style><body><h1>php.cn</h1></body>
<head><link rel="stylesheet" href="css/style.css"></head><body><h1 style="color: red;">php.cn</h1></body>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 标签选择器 */h2 {color: red;font-weight: bold;}</style></head><body><h2>PHP中文网</h2></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 类选择器 */.title {color: #f60;font-weight: bold;}</style></head><body><h2 class="title">PHP中文网</h2></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* ID选择器 */#title {color: green;font-weight: bold;}</style></head><body><h2 id="title">PHP中文网</h2></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 属性选择器 */h2[dat="GuanFang"] {color: rgb(6, 115, 204);font-weight: bold;}</style></head><body><h2 dat="GuanFang">PHP中文网</h2><h2>第十八期</h2></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 群组选择器 */.title,#qishu {color: rgb(204, 6, 138);font-weight: bold;}</style></head><body><h2 class="title">PHP中文网</h2><h1 id="qishu">第十八期</h1></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 群组选择器 */* {color: rgb(92, 6, 204);font-weight: bold;}</style></head><body><h2 class="title">PHP中文网</h2><h1 id="qishu">第十八期</h1></body></html>

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 子元素选择器 > */div > span {background-color: red;color: #fff;padding: 10px;}</style></head><body><h2>PHP中文网</h2><h1>第十八期</h1><div><p>item1</p><p>item2</p><p>item3</p><span>php.cn</span></div><p>我是一个段落标签</p><a href="#">我是一个链接标签</a></body></html>
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 后代素选择器 */div span {background-color: red;color: #fff;padding: 10px;}</style></head><body><h2>PHP中文网</h2><h1>第十八期</h1><div><p><span>item0</span></p><p>item2</p><p>item3</p><span>php.cn</span></div><p>我是一个段落标签</p><a href="#">我是一个链接标签</a></body></html>
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 相邻兄弟素选择器 */h2 + h1 {background-color: red;color: #fff;padding: 10px;}</style></head><body><h2>PHP中文网</h2><h1>第十八期</h1><div><p><span>item0</span></p><p>item2</p><p>item3</p><span>php.cn</span></div><p>我是一个段落标签</p><a href="#">我是一个链接标签</a></body></html>
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>/* 相邻兄弟素选择器 */h2 ~ * {border: 1px solid red;padding: 10px;}</style></head><body><h2>PHP中文网</h2><h1>第十八期</h1><div><p><span>item0</span></p><p>item2</p><p>item3</p><span>php.cn</span></div><p>我是一个段落标签</p><a href="#">我是一个链接标签</a></body></html>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号