博主信息
博文 26
粉丝 0
评论 0
访问量 18763
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
1019作业:后台案例+实例演示
高空中的云
原创
601人浏览过

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. }
批改老师:PHPzPHPz

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学