欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

引入css的四种方式_html/css_WEB-ITnose

程序员文章站 2022-05-22 08:38:03
...
/*******css.html*/




css四种引入方式


/* 第一种方式引入*/



天天向上



/********23-2.css***********************/

#test1{
border: 10px solid blue;
}


/****23css.css******************/

@import url(23-2.css);
#test1{
width: 200px;
height: 300px;
margin: 50px auto;
background:gray;
}