1.屬性引入: 在標籤中加入style屬性,僅適用於當前標籤 2.標籤引入: 在目前頁面中使用<style>標籤引入,僅適用於目前文件</p> <p> 3.<link>標籤引入: 引用外部的CSS樣式表文件,適用於所有引入該文件的文檔</p> <p> 三種方式各有用途,根據需求來使用,不過,除非情況特殊,否則盡可能的使用外部樣式表</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="./css/demo.css"> <link rel="stylesheet" type="text/css" href="./css/demo.php"> <title>css样式引入的三个级别</title> <style type="text/css"> h3 { background-color: lightcyan; color: blue; } 这是一个悲伤的故事