批改状态:合格
老师批语:
<!-- 2. 左侧操作入口 --><nav><a href="../20230116/demo1.html" target="content">课程表</a><a href="../20230116/demo2.html" target="content">注册表单</a></nav><!-- 3. 主体:左侧入口target与主体name绑定--><iframe src="default.html" frameborder="0" name="content"></iframe>

targer="conter" 与 iframe name="content"进行绑定,点击a链接就会在右侧窗口打开对应的链接。
<title>样式优先级</title><!-- 引用外部css样式文件,异步加载 --><link rel="stylesheet" href="css/style.css" /></head><body><!--文档样式--><style type="text/css">h3 {color: blueviolet; font-weight: normal;}</style><!--行内样式--><pre>行内样式:</pre><h3 style="color:red">hello</h3><h3 style="color:red">world</h3><pre>文档样式:</pre><h3>hello</h3><h3>world</h3>


1. 行内样式: `tag.style`, 当前元素有效2. 文档样式: `<style>`, 当前文档有效3. 外部样式: `file.css`, 引入文档有效优先级:行内 > 文档 > 外部
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号