Blogger Information
Blog 5
fans 0
comment 0
visits 2960
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
css元素样式来源有哪些
lucy
Original
613 people have browsed it

css元素样式

1.行内样式

  1. <html>
  2. <h1 style color:red;>行内样式</h1>
  3. </html>

直接在标签内加入,只作用与当前一个标签

2.自定义样式

  1. <style>
  2. h1{
  3. color:red;
  4. }
  5. h2{
  6. color: green;
  7. }
  8. </style>

在当前html代码写入<style></style>标签之内

外部公共样式

common.css,jQuery.css, layui.css,<link>引入

  1. <link rel="stylesheet" href="style1.css" />

从一个外部文件引入样式,

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