css – Visual Studio Intellisense为Bootstrap通过CDN

前端之家收集整理的这篇文章主要介绍了css – Visual Studio Intellisense为Bootstrap通过CDN前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经通过Microsoft CDN安装了Bootstrap,如:
<head>
    ...
   <link href="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
   <link href="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" />
</head>

<body>
    ...
    <script src="//ajax.aspnetcdn.com/ajax/bootstrap/3.1.1/bootstrap.min.js"></script>
</body>

一切都可以用Bootstrap正常工作,但Visual Studio并没有给我任何类型的智能感知.

例如,打字

<div class="(intellisense should open here)

没有出现

有没有办法从CDN获得智慧感知?

解决方法

您可以添加CDN引用到intelliSence for javascript,但是,不支持css.

您可以将文件添加到您的项目中,并且它将工作,您不需要添加一个参考html,只是项目,它应该解决您的问题.

原文链接:https://www.f2er.com/css/214595.html

猜你在找的CSS相关文章