我有 4 个引导列:col-lg-1、col-lg-1、col-lg-4 和 col-lg-6(从左到右)。
在最大的列(col-lg-6)中,我想要一个 Cytoscape 图。目前我的 Cytoscape 风格如下(在该<head>
部分中):
<style type="text/css">
#cy {
height: 80%;
width: 50%;
position: absolute;
left: 40%;
top: 20%;
background:red;
}
</style>
然后在正文部分,我有我最左边的列:
<div id="cy" class="col-lg-6" style="background-color:grey;">
Some text
</div>
最后,我的脚本也在 HTML 文档的正文部分:
<script type="text/javascript">
$( document ).ready(function() {
var cy = cytoscape({
container: document.getElementById('cy'),
.....
});
});
</script>
现在的问题是,当浏览器调整大小时,Cytoscape 图(和最左边的列)不会堆叠在其他列下方(如 Bootstrap 行为中所预期的那样)。
您能否向我展示一个详细的解决方案,我非常感谢您的专业知识。