Summary of various forms of applying CSS styles in web pages

Summary of various forms of applying CSS styles in web pages
1. Inline style, placed in <body></body>:

Copy code
The code is as follows:

<div style="style content; semicolon separated"> Inline style</div>

2. Internal styles are usually placed in the head, but can also be placed in the body, but it is recommended to be placed in the head

Copy code
The code is as follows:

<head>
<style type="text/css">
body{font-family:"Microsoft YaHei";}
</style>
</head>

3. External styles, usually placed in the head part;

Copy code
The code is as follows:

<link href="/css/style.css" rel="stylesheet" type="text/css" />

It can also be placed in the body, it is recommended to be placed in the head;

4. Import external style sheets. Older browsers may not support this method.

Copy code
The code is as follows:

<style type="text/css">
@import url("style.css");
</style>

<<:  CSS border half or partially visible implementation code

>>:  Docker container source code deployment httpd use storage volume to deploy the website (recommended)

Recommend

Quickjs encapsulates JavaScript sandbox details

Table of contents 1. Scenario 2. Simplify the und...

In-depth study of MySQL composite index

A composite index (also called a joint index) is ...

Installation, configuration and use of process daemon supervisor in Linux

Supervisor is a very good daemon management tool....

Special commands in MySql database query

First: Installation of MySQL Download the MySQL s...

In-depth understanding of Vue-cli4 routing configuration

Table of contents Preface - Vue Routing 1. The mo...

Introduction to the process of building your own FTP and SFTP servers

FTP and SFTP are widely used as file transfer pro...

Example of MySQL auto-increment ID exhaustion

Display Definition ID When the auto-increment ID ...

How to use MySQL group by and order by together

Suppose there is a table: reward (reward table), ...

Three ways to communicate between Docker containers

We all know that Docker containers are isolated f...

Detailed tutorial on installing Mysql5.7.19 on Centos7 under Linux

1. Download MySQL URL: https://dev.mysql.com/down...

Detailed explanation of Vue life cycle functions

Table of contents Lifecycle Functions Common life...

MySQL json format data query operation

The default table name is base_data and the json ...

The difference between html empty link href="#" and href="javascript:void(0)"

# contains a location information. The default anc...

Enabling and configuring MySQL slow query log

Introduction MySQL slow query log is an important...

How to delete the container created in Docker

How to delete the container created in Docker 1. ...