Rumah > Artikel > hujung hadapan web > CSS4种展现方式_html/css_WEB-ITnose
1嵌入式,直接写到网页中
<style type="text/css"> css样式 如: p{ color:red;}</style>
2.链接式
<style href="..../xx.css" type="text/css"> </style>
3.引入式
<style type="text/css"> @import url(.../xxx.css) </style>
4.直接写入html内容中
元素>