问题:
我似乎无法制作<i>
标签来呈现 Bootstrap 图标,它无法识别 Bootstrap 提供的类:
诊断要素
标记.html
<link rel="import" href="../bower_components/polymer/polymer.html">
<polymer-element name="polymer-tag" attributes="name">
<template>
<link rel="import" href="bootstrap.html">
<style>
:host { display: block; }
</style>
<div>
<span class="name">{{ name }}</span>
<!-- This classes are not recognized and the icon is not displayed -->
<i class="glyphicon glyphicon-plus-sign"></i>
</div>
</template>
<script>
Polymer('polymer-tag', {...});
</script>
</polymer-element>
我也尝试将导入移到外面<polymer-element>
,但它也不起作用。
bootstrap.html
包含这个:
<link rel="stylesheet" type="text/css" href="../bower_components/bootstrap/dist/css/bootstrap.min.css">
如果我加载一个简单的旧链接而不是导入,bootstrap.css
那么它可以工作,但是,如果我也在bootstrap.css
索引中使用,该站点将加载两次bootstrap.css
这是 Web 组件的限制吗?这是聚合物的问题吗?
谢谢!
弗兰