1. 程式人生 > >前端之css三種方式

前端之css三種方式

css三種引入的方式

一、三種方式的書寫規範

1.行間式

html

<div style="width:100px;height:100px;background-color:red;></div>

2.內聯式

html

<head>

<style>

   div{

     width:100px;

     height:100px;

     background-color:red;

}

</style>

</head>

3、外聯式

```css
file: zero.css
div {
    width: 100px;
    height: 100px;
    background-color: red;
}
```

```css
file: zero.html
<head>
    <link rel="stylesheet" type="text/css" href="css/zero.css" />