Blogger Information
Blog 6
fans 0
comment 0
visits 2924
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
9.02日 CSS基础中css引用、css优先级、选择器与优先级、盒模型
曾经克火的博客
Original
690 people have browsed it

1.    案例演示 ifram 标签

       代码:

Snipaste_2019-09-04_11-37-03.png


    页面效果:

Snipaste_2019-09-04_11-39-14.png

Snipaste_2019-09-04_11-39-56.png

Snipaste_2019-09-04_11-40-18.png

Snipaste_2019-09-04_11-40-38.png

        2.    实例演示: css样式设置的优先级

        内联样式

Snipaste_2019-09-04_11-41-55.png

Snipaste_2019-09-04_11-42-13.png


    内部样式:

Snipaste_2019-09-04_11-42-28.png

Snipaste_2019-09-04_11-43-05.png

    外部样式:

Snipaste_2019-09-04_11-43-17.png

Snipaste_2019-09-04_11-43-43.png

Snipaste_2019-09-04_11-44-04.png

    3. 实例演示: css的id, class与标签选择器的使用规则

    选择器:id选择器            #id{ }

                  类选择器            .class名{ }

                  标签选择器            标签名{ }

    优先级:id选择器 > 类选择器 > 标签选择器

Snipaste_2019-09-04_11-44-56.png

Snipaste_2019-09-04_11-45-14.png


Snipaste_2019-09-04_11-45-42.png

Snipaste_2019-09-04_11-45-51.png


Snipaste_2019-09-04_11-46-14.png

Snipaste_2019-09-04_11-46-25.png


    4. 实例演示盒模型的五大要素: width, height, padding, border, margin(暂时忽略)

    Snipaste_2019-09-04_11-46-47.png

Snipaste_2019-09-04_11-53-34.png

Snipaste_2019-09-04_11-54-20.png


    5.     总结

  • 内联框架:在当前页面中加载另一个页面,用<ifram  name=""></ifram>标签,name属性很重要

  • css是层叠样式表,用来设置html元素在浏览器页面中的布局与显示方式。

  • css引入方式:内联样式(用style属性,仅作用到当前元素)、内部样式(用<style></style>标签,仅作用到当前文档)、外部样式(引入.css文件,可作用在引入.css文件的多个文档中)

  • css引入方式优先级:内联样式 > 内部样式 > 外部样式      作用的位置越精确,优先级越高  

  • css选择器:id选择器(  用#id{ } 定义 )、类选择器(  用.class名{ } 定义 )、标签选择器( 用  标签名{ }  定义 ),在{}内可书写多种样式规则。

  • css选择器优先级:id选择器 > 类选择器 > 标签选择器

  • 盒模型:模型可以套模型,用css修饰

  • 盒模型的五大元素:width宽度、height高度、padding内边距、margin外边距、border边框

  • padding/margin  默认透明,只有宽度属性

  • border :  默认黑色,除宽度外,还可设置样式和前景色

  • 5.jpeg


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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!