CSS是網(wǎng)頁設(shè)計(jì)中重要的一部分,而CSS的合并可以極大地提高網(wǎng)頁的加載速度。那么CSS是如何合并的呢?
//示例1
<style>
#box1 {
width: 100px;
height: 100px;
background-color: red;
}
</style>
<style>
#box2 {
width: 200px;
height: 200px;
background-color: blue;
}
</style>
在示例1中,我們使用了兩個(gè)
|
|
|
| |