我有一个使用散景而没有散景服务器的Django应用程序。 在我的HTML中,我有这个:
<body>
<div class="container">
<div id="title">
<h3 style="color: yellow;">{{ title|safe }}</h3>
</div>
<div class="graph">
{{ div1|safe }}
{{ graph|safe }}
</div>
<div id="menu">
{{ link|safe }}
</div>
<div class="table">
{{ table|safe }}
</div>
</div>
</body>
在我的CSS中我有这个:
.graph{
margin-right: -15px;
margin-left: -15px;
}
这是我的散点图图表的大小:
plot = figure(tools=TOOLS, x_axis_label='Position', y_axis_label='- height',plot_width=1000,plot_height=500,y_range=(-3.2,max_value+3))
在页面顶部,我使用bootstrap登录我的网页。但我无法将散景图放入容器中。它会一直向右移动。 任何人都可以帮助我吗?
答案 0 :(得分:0)
我自己找到了问题的答案: 在容器或正文的html的css样式标记中,不要放任何:
text-align:center;