Home  >  Article  >  Web Front-end  >  Comparison of the advantages and disadvantages of css style introduction methods

Comparison of the advantages and disadvantages of css style introduction methods

王林
王林forward
2020-05-17 09:02:332554browse

Comparison of the advantages and disadvantages of css style introduction methods

1. Inline style

Advantages: easy to write, high weight

Disadvantage: failure to separate structural styles

<div style="width: 100px" height:100px></div>

(Video tutorial recommendation: css video)

2. Internal style

Advantages: structural styles are separated

Disadvantages: incomplete separation

    <style>
        div {
            color: violet;
            font-size: 16px;
        }
    </style>

3. External style

Advantages: Complete separation of structure and style

Disadvantages: Need to introduce

    <!-- 引入css初始化文件 -->
    <link rel="stylesheet" href="css/normalize.css" />
    <!-- 引入公共样式 -->
    <link rel="stylesheet" href="css/baes.css">
    <!-- 引入首页样式 -->
    <link rel="stylesheet" href="css/index.css">

Recommended tutorial: CSS entry basics Tutorial

The above is the detailed content of Comparison of the advantages and disadvantages of css style introduction methods. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete