博客列表 >1019作业:后台案例+实例演示

1019作业:后台案例+实例演示

高空中的云
高空中的云原创
2022年10月19日 22:54:17409浏览

1019 作业

iframe 后台小案例

效果图

核心代码

  1. <header>
  2. <h1>网站后台管理系统<small>(v1.0)</small></h1>
  3. <section>
  4. <em>admin</em>
  5. <button onclick="location.href='logout.php'">退出</button>
  6. </section>
  7. </header>
  8. <!-- 2. 后台左侧: 导航菜单 -->
  9. <nav>
  10. <a href="" target="content">首页</a>
  11. <a href="" target="content">网站栏目</a>
  12. <a href="" target="content">文章管理</a>
  13. <a href="" target="content">用户管理</a>
  14. <a href="" target="content">数据统计</a>
  15. <a href="" target="content">设置</a>
  16. </nav>
  17. <!-- 3. 后台右侧: 和左侧菜单绑定关联的内容区域 -->
  18. <iframe src="" name="content"></iframe>

标签,属性选择器,群组选择器

效果图

核心代码(html部分)

  1. <h2>这是标签选择器演示案例[蓝色]</h2>
  2. <hr>
  3. <!-- 2.属性 title -->
  4. <h2 title="属性title">这是属性选择器演示案例[红色]</h2>
  5. <!-- id,class: 是属性,但是它是高频属性,css为它设计了语法糖 -->
  6. <h2 id="specialAttr_id">这是特殊属性[id]选择器演示案例[绿色]</h2>
  7. <h2 class="specialAttr_class">这是特殊属性[class]选择器演示案例[黄色]</h2>
  8. <hr>
  9. <h1>这是群组选择器的演示案例[紫色]</h1>
  10. <h3>这是群组选择器的演示案例[紫色]</h3>
  11. <h4>这是群组选择器的演示案例[紫色]</h4>

核心代码(css部分)

  1. /*
  2. 标签选择器
  3. */
  4. h2{
  5. color: blue;
  6. }
  7. /*
  8. 属性选择器
  9. */
  10. h2[title='属性title']{
  11. color:red;
  12. }
  13. /*
  14. 属性选择器
  15. 因 id是高频属性,css为其设计了语法糖:#id
  16. h2[id='specialAttr_id']
  17. 与 #specialAttr_id 相同
  18. */
  19. h2[id='specialAttr_id']{
  20. color:green;
  21. }
  22. /*
  23. 属性选择器
  24. 因class是高频属性,css为其设计了语法糖:.class
  25. h2[class='specialAttr_class']
  26. 与 .specialAttr_class 相同
  27. */
  28. h2[class='specialAttr_class']{
  29. color:yellow;
  30. }
  31. /* 群组选择器 */
  32. h1,h3,h4{
  33. color: purple;
  34. }
上一条:用户注册表单案例下一条:10.19作业
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议