iframe案例来练习与HTML样式基础

iframe案例来练习与HTML样式基础

iframe案例来练习与HTML样式基础

iframe网站后台

<!DOCTYPE html><htmllang=“en”><head><metacharset=“UTF-8”/><metahttp-equiv=“X-UA-Compatible”content=“IE=edge”/><metaname=“viewport”content=“width=device-width, initial-scale=1.0”/><title>iframe: 后台案例练习</title><style>*{ margin:0; padding:0; boxsizing:bor青狐资源网wcqh.cnderbox;} body { height:100vh; width:100vw; display: grid; gridtemplatecolumns:12em1fr; gridtemplaterows:8em1fr;} body header { display: flex; backgroundcolor: dodgerblue;/* 设置header容器的宽度,它跨越了2列 */ gridcolumnend: span 2; lineheight:8em; padding:020px;} body header hgroup { display: flex; color:#fff;}body header hgr青狐资源网wcqh.cnoup h1{ fontsize:3em;} body header hgroup h2 { fontsize:1em; marginleft:20px;} body header p { marginleft:auto; color:#fff;} body header p button { marginleft:10px; padding:4px; border: none;} body nav { backgroundcolor:#eee; borderright:1px solid #333; padding:10px;} body iframe { width:100%; height:100%; border: none;青狐资源网wcqh.cn} body nav ul li { liststyletype: none;} body nav ul li a { display: block; padding:0.5em0; borderbottom:1px solid #555; textalign: center; textdecoration: none;}</style></head><body><!– 顶部商标与状态 –><header><hgroup><h1>LOGO</h1><h2>网站后台管理系统 (1.1v)</hgroup><p><em>admin</em><buttononclick=log青狐资源网wcqh.cnout()>退出登录</button></p></header><!– 左侧导航 –><nav><ul><li><ahref=“#”target=“content”>item1</a></li><li><ahref=“#”target=“content”>item2</a></li><li><ahref=“#”target=“content”>item3</a></li><li><ahref=“#”target=“content”>item4</a></li><li><ahref=“#”target=“content”>item5</a></li><li><ahref=“#”target青狐资源网wcqh.cn=“content”>item6</a></li></ul></nav><!– iframe动态内容部分 –><iframesrc=“inc/default.html”name=“content”></iframe><!– JS代码 –><script>function logout(){return confirm(“是否退出?”)? alert(“退出成功”):false;}</script></body></html>

效果预览:

元素样式来源

元素样式来两大来源:预置样式、自定义样式

一、预置样式我们可以在浏览器中查看如下:

二、自定义样式同样用h1标题示例加背景色如下:

元素样式优先级

元素样式青狐资源网wcqh.cn写在不同的地方优先级会有所区别:

写在元素自身的style属性里叫做行间样式写在本文档里的style标签里的文档样式写在外部CSS文档里的外部样式

它们的优先级为:行间样式 > 文档样式 > 外部样式 > 预置样式 如下图示:

外部样式覆盖了预置样式:外部样式 > 预置样式

文档样式又覆盖了外部样式:文档样式 > 外部样式 > 预置样式

行间样式覆盖了所有样式:行间样式 > 文档样式 > 外部样式 > 预置样式

批改老师:PHPz 批改状态:合格 老师批语:完成的很好,继续加油
作者最新博文
2023-01-21 11:21:06

© 版权声明
THE END
喜欢就支持一下吧
点赞163 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容