為 Interview Bit 的第 4 題。
題外話,別看這一題很簡單,但我還真的在筆試時被問過,而且不只一家公司會問到。
css
<link rel="stylesheet" type="text/css" href="mystyles.css" />
HTML
裡面加入 <style></style>
<style type="text/css">
/*Add style rules here*/
</style>
HTML
元素中加入 inline styles<h2 style="color:red;background:black">Inline Style</h2>
.css
檔案匯入其他的 stylesheet
在 css
檔案裡面,使用 @import
,也可以將stylesheet
匯入。但是每一次呼叫 @import
都會call 一次 server request,這是需要特別注意的地方。
@import "path/to/style.css";
參考資料:
Is it possible to include one CSS file in another?