1. 程式人生 > >前端基礎之CSS

前端基礎之CSS

strong 解耦 技術分享 查找 lan span htm src body

CSS:對html標簽進行批量渲染的,一般分兩步 1、進行查找標簽 2、操作標簽;

1、查找標簽:

2、操作標簽:

css樣式層疊的引入方式:

1、行內引入:只能對單一標簽進行CSS渲染,無法批量渲染,無法將html代碼和css代碼做解耦

技術分享
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>張根</title>
</head>
<body>



<p style="color:red;background:greenyellow "
> 張根 </p> </body> </html>
View Code

前端基礎之CSS