我包含bootstrap,但样式表没有在html中显示
<style type="text/css">/* You can add global styles to this file, and also
import other style files */
</style>
<style></style>
但是在chrome注入中,bootstrap.min.css没有明显包含
document.addEventListener("DOMContentLoaded", function() {
var cy = cytoscape({
container: document.getElementById('cy'),
elements: {
nodes: [
{ data: { id: 'n', label: 'Olo' } },
{ data: { id: 'c'}, classes: 'className'}
]}
});
cy.style.fromJson([
{
selector: 'node',
style: {
'color': 'red'
}
},{
selector: '.className',
style: {
'label': 'this has a class',
'color': 'blue'
}
}
])
});
答案 0 :(得分:0)
更改angular-cli文件后,请务必重新启动服务器。