Blogger Information
Blog 45
fans 0
comment 0
visits 34489
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1210内联框架与css的初步认识
咸鱼老爷
Original
508 people have browsed it

内联标签

iframe
srcdoc:提示文本 支持html标签
对seo不友好
适合写后台页面

  1. <a href="https://j.map.baidu.com/69/y" target="ditu">显示地图</a>
  2. <iframe srcdoc="这是地图" name="ditu"></iframe>

效果图

iframe实现后台页面小案例

  1. <header>网站管理后台</header>
  2. <aside>
  3. <a href="index.html" target="content">首页</a>
  4. <a href="system.html" target="content">系统管理</a>
  5. </aside>
  6. <main>
  7. <iframe name="content"></iframe>
  8. </main>

效果图

布局元素

语义化标签
页眉header
侧边aside
主体内容 main
div:通有容器标签,内部可以放置任何类型的元素,当一个容器类型不定时可以用它
span:通用容器,不过它内部是行内元素/文本/图片/链接/input
section:区块
article:文章
页脚footer

CSS的语法和基本术语

css:层叠样式表
如果你的css样式仅仅用来控制当前页面的元素,就用style标签写到当前页面中。
术语:规则,选择器,声明块,属性和值;
选择器:h1 .lage…;
声明块:由一对{}包住的内容;
规则:选择器+声明块;
属性和值:写在声明块中的名值对;

声明块中的每一个名值对,叫一个样式声明。

  1. <style>
  2. 标签{
  3. 属性:值
  4. }
  5. </style>

层叠与优先级

一个元素样式会受到四个级别声明的影响:
1.继承的
2.浏览器的:用户代理样式
3.自定义的:写在html文档的style标签中的
4.行内样式(内联样式),写在元素的style属性中的

CSS三大特性—— 继承、 优先级和层叠。
继承:即子类元素继承父类的样式;
优先级:是指不同类别样式的权重比较;
层叠:是说当数量相同时,通过层叠(后者覆盖前者)的样式。
1、标签选择器
选中页面中所有的该标签元素
2、属性选择器
*[class=”title”]
选中页面中所有的具有该属性的元素
3、类选择器
.class
4、id选择器:浏览器不检查它的唯一性
通常用来选择页面中的唯一元素 #元素

优先级

!important > 行内样式>ID选择器 > 类选择器 > 标签 > 通配符 > 继承 > 浏览器默认属性

Correcting teacher:天蓬老师天蓬老师

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
Author's latest blog post