css與html結合四種方式
阿新 • • 發佈:2018-12-20
方式一:每個標籤加一個屬性法
<div style="background-color:red;color:green;"></div>
方式二:head中加style標籤(不好,需要修改html檔案)
<style type="text/css">
div{
background-color:red;
color:green;
}
</style>
方式三:head中載入css檔案(只需修改css檔案)注意:這種方法某些瀏覽器不起作用,不要用了
<style type="text/css"> @import url(div.css); </style>//前端全棧學習交流圈:866109386 //幫助1-3年前端人員突破技術,提升思維 css檔案中 div{ background-color:red; color:green; }
方式四:head中使用頭標籤 link
<link rel="stylesheet" type="text/css" href="div.css">
Never waste time any more, Never old man be a yong man