Blogger Information
Blog 9
fans 0
comment 5
visits 10264
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS元素样式的来源
酒淋后
Original
888 people have browsed it

Hello! 大家好!欢迎来到php中文网,我是 酒淋后!今天要给大家分享的是 CSS元素样式来源以及实例演示,不要走,结尾有惊喜!


一、简单介绍 CSS

英文全称 中文含义 作用
Cascading Style 层叠样式表 美化页面及优化页面交互使用

二、CSS 元素样式的来源

1、行内样式

  • a、行内样式就是直接把 CSS 代码添加到 HTML 的标记中,即作为 HTML 标记的属性标记存在。通过这种方法,可以很简单地对某个元素单独定义样式。

  • b、设置前的行内样式代码演示:

    1. <h1>设置前的行内样式</h1>
  • c、设置后的行内样式代码掩饰:

    1. <h1 style="color=red;">设置后的行内样式</h1>

  

2、内联样式

  • a、内嵌式就是把样式写在<head>标签中,并用<style>标签去声明,下面的例子即使用内嵌式。

  • b、设置前的内联样式代码演示:

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8" />
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    6. <title>Document</title>
    7. </head>
    8. <body>
    9. <h1>内联样式</h1>
    10. </body>
    11. </html>
  • c、设置后的内联样式代码掩饰:

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8" />
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    6. <title>Document</title>
    7. <style>
    8. h1{color:red;}
    9. </style>
    10. </head>
    11. <body>
    12. <h1>内联样式</h1>
    13. </body>
    14. </html>

  

3、外部样式

  • a、外部样式是指在外部定义 CSS 样式表并形成以.CSS 为扩展名文件,然后在页面中通过<link>链接标记链接到页面中,而且该链接语句必须放在页面的<head>标记区.

  • b、首先新建一个后缀名为 .css 的文件,里面写入:

    1. h1{color:red;}
  • c、然后在html文件中引入该文件,示例如下:
    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8" />
    5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    6. <title>Document</title>
    7. <link rel="stylesheet" href="style1.css">
    8. </head>
    9. <body>
    10. <h1>link引入外部样式</h1>
    11. </body>
    12. </html>

  

终于把作业做完了!!!

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