美文网首页
如何引入css

如何引入css

作者: 楼水流云 | 来源:发表于2019-10-08 15:14 被阅读0次

    外部样式引入css
    <head>
    <link rel="stylesheet" href="index.css"> 建议使用
    </head>

    <style>
    @import url("index.css") 不建议使用
    @import "index.css" 不建议使用
    </style>

    相关文章

      网友评论

          本文标题:如何引入css

          本文链接:https://www.haomeiwen.com/subject/yjqcpctx.html