Classification of CSS styles 1. Internal style ---- inline style Using the style tag <style type="text/css"> /* Style */ </style> Learn one more trick: write the common style of the page (if there are not many) in the style tag 2. Inline styles Write it directly in the style attribute on the tag <div style="color:red;"> I am a box</div> Learn one more trick: Usually used by backend programmers to modify the page 3. External Style Create a new css file and associate it with the html page a) Use tag association <!-- In the head tag of the html --> <link rel="stylesheet" type="text/css" href="css file path"> b) Use instruction association <style type="text/css"> /* In the style tag */ @import url("css file path") </style> Learn one more trick: The most commonly used external style and link tag in projects Summary of three style sheets Knowledge point supplement: CSS style classification CSS styles can be divided into three categories: inline styles, internal style sheets, and external style sheets 1. Inline style (the style is written in the HTML tag and only works on the content of the tag)
2. Internal style (the style is written between the head tags of the HTML and only works on the content of the HTML) <html> <head> <title></title> <style type="text/css"> body{font-size:12px} </style> </head> <body></body> </html> 3. External style (style reference is written between the head tags and works on the web page that references the CSS file) <html> <head> <title></title> <link href="common.css" rel="stylesheet" type="text/css"> </head> <body></body> </html> In the css style, # represents the id selector, and . represents the class selector
Summarize This is the end of this article about the classification introduction of CSS styles (basic knowledge). For more relevant CSS style classification content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: How to write the introduction content of the About page of the website
>>: MySQL Query Cache Graphical Explanation
mysql obtains statistical data within a specified...
This article example shares the specific code of ...
Counting the number of a string in a file is actu...
Table of contents Preface 1. Cause of the problem...
Basic introduction to robots.txt Robots.txt is a p...
1. Command Introduction The ln command is used to...
Table of contents JS function call, apply and bin...
Big data continues to heat up, and if you are not...
Table of contents Understand the core concept of ...
1. Install Fcitx input framework Related dependen...
1. Disk partition: 2. fdisk partition If the disk...
All previous projects were deployed in the Window...
WeChat applet uses scroll-view to achieve left-ri...
Table of contents 1. How to represent the current...
Storage rules for varchar In versions below 4.0, ...