Home  >  Article  >  Web Front-end  >  引入css的四种方式_html/css_WEB-ITnose

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

WBOY
WBOYOriginal
2016-06-24 11:23:03947browse

/*******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;
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn