Blogger Information
Blog 18
fans 0
comment 3
visits 12751
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
iframe后台布局和HTML样式来源与优先级
P粉019280626
Original
521 people have browsed it

作业内容:1. 用<iframe>写一个简单的后台布局, 注意a.target与iframe.name的配合 2. 实例演示html元素的样式来源与优先级(要有图示)

一、用iframe写简单后台—大学生编程语言菜单后台

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Gao的作业iframe做简单后台</title>
  8. <link rel="stylesheet" href="static/css/admin.css" />
  9. </head>
  10. <body>
  11. <div>
  12. <h2>大学生编程语言菜单后台 <big> 3.0</big></h2>
  13. <button>退出</button>
  14. </div>
  15. <hr>
  16. <nav>
  17. <a href="https://www.w3school.com.cn/h.asp" target="sss">HTML</a>
  18. <a href="https://www.w3school.com.cn/b.asp" target="sss">Browser</a>
  19. <a href="https://www.w3school.com.cn/s.asp" target="sss">Server side</a>
  20. <a href="https://www.w3school.com.cn/x.asp" target="sss">XML</a>
  21. <a href="https://www.w3school.com.cn/w.asp" target="sss">building</a>
  22. </nav>
  23. <!-- <iframe src="https://www.php.cn/course/list/29.html" frameborder="0" name="sss" width="800" height="600"></iframe> -->
  24. <iframe srcdoc=内容背景 style="background-color:lightskyblue" name="sss" width="800" height="600" > </iframe>
  25. </body>
  26. </html>

截图如下
图1后台整体样式

图2点击左侧菜单右侧可以预览内容

图3另一个菜单内容

二、样式的优先级及引用来源

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <!-- 外部样式紫色 -->
  8. <link rel="stylesheet" href="/static/css/style.css">
  9. <title>Document</title>
  10. </head>
  11. <body>
  12. <!-- 文档样式黄色 -->
  13. <style>
  14. h3{
  15. color:#b7d412;
  16. }
  17. </style>
  18. <div>
  19. <!-- 行内样式红色 -->
  20. <h3 style="color: brown;">世界上比较大的计算机网站</h3>
  21. <h3 style="color: brown;">PHP.CN</h3>
  22. </div>
  23. </body>
  24. </html>

图片 行内样式红色大于文档样式黄色大于外部样式紫色

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:很好,继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments