CSS可以寫在以下地方:
1. HTML文件中的<style>標簽內:
<head> <title>我的網站</title> <style> p { color: red; } </style> </head>
2. HTML文件中的<link>標簽引用外部CSS文件:
<head> <title>我的網站</title> <link rel="stylesheet" href="style.css"> </head>
3. 在CSS文件中:
p { color: blue; }
4. 使用<style>標簽內的@import引用外部CSS文件:
<head> <title>我的網站</title> <style> @import url("style.css"); </style> </head>
總結:CSS可以寫在HTML文件中的<style>標簽內,也可以寫在外部CSS文件中,并通過<link>標簽或@import引用。建議將CSS單獨寫在外部文件中,以便統一管理和維護。
下一篇css可以按比例嗎