스타일시트
@import url("sheet1.css");
@import url("sheet2.css");
@import url("sheet3.css");
@import url("sheet2.css"); /* @import가 맨 앞에 위치해야 한다. */
h1 {color: red;}
p {color: blue; background-color: yelow;}
table td,
table th {border: 1px solid #000000;} 
<style>
    @import url("sheet1.css");
    @import url("sheet2.css");
    @import url("sheet3.css");
</style>
<style>
	@import url("sheet2.css"); /* @import가 맨 앞에 위치해야 한다. */
	h1 {color: red;}
	p {color: blue; background-color: yelow;}
	table td,
	table th {border: 1px solid #000000;} 
</style>
/* 미디어 쿼리 지정하기 구문:
   @import url("외부 CSS 파일의 URL") list-of-media-queries;
*/
@import url("print.css") print;
@import url("landscape.css") screen and (orientation: landscape);
<style>
	h1 {color: red;}
	p {color: blue; background-color: yelow;}
	table td,
	table th {border: 1px solid #000000;}
	@import url("sheet2.css"); /* @import가 맨 앞에 위치해야 한다. */
</style>
h1 {color: red;}
p {color: blue; background-color: yelow;}
table td,
table th {border: 1px solid #000000;}
@import url("sheet2.css"); /* @import가 맨 앞에 위치해야 한다. */
/* 이 스타일시트는 웹 페이지의 기본 스타일을 정의합니다. */
@import url("styles.css");

/* 추가 스타일 정의 */
body {
    background-color: #f0f0f0;
}
@charset "utf-8";

/* 이 스타일시트는 웹 페이지의 기본 스타일을 정의합니다. */
@import url("styles.css");

/* 추가 스타일 정의 */
body {
    background-color: #f0f0f0;
}

caniuse.com에서 더 자세한 정보를 확인해 보세요.