在iPad纵向模式或屏幕分辨率大于1920px的情况下,html主体在右侧留有空白,并且每个元素在右侧均显示空白,并且随着屏幕分辨率的提高,该空间会变宽
我在体内将padding和margin设置为0 而且,我将宽度设置为100%,但仍然存在相同的问题
body {
line-height: 1.7;
color: gray;
font-weight: 400;
font-size: 1rem;
overflow-x:hidden;
width: 100% !important; }
我希望通过将上面的代码添加到正文中,右边不会有空格,但是会留一些空间
答案 0 :(得分:0)
尝试
plt.figure(figsize=(35,35))
options = {
'edge_color': '#eebcbc',
'width': 1,
'with_labels': True,
'font_weight': 'regular',
}
G = nx.from_pandas_edgelist(bin_nom, "structure" , "Prénom",
edge_attr= [col for col in bin_nom["Prénom"]] ,
create_using=nx.Graph())
d = dict(G.degree)
nx.draw(G, pos=nx.spring_layout(G, k=0.85, iterations=100),
node_color='blue',
nodelist=d.keys(), node_size=[v * 100 for v in d.values()],
**options)
ax = plt.gca()
ax.collections[0].set_edgecolor("#000007")
plt.show()