css 我如何在Plotly Dash中删除主div的填充?

x7yiwoj4  于 2023-03-14  发布在  其他
关注(0)|答案(2)|浏览(122)

我想从封装所有内容的主Dash div中删除填充。它没有类名,所以我不能用CSS影响它。
在该图像中,您可以在“检查器”面板中看到,id为_dash-app-content的div包含填充有问题的div。
我怎么去掉这个衬垫?

nmpmafwu

nmpmafwu1#

您只需要将填充和边距设置为等于0,如下所示:

app.layout = html.Div(       # <------ main Div
    children=[
        html.H1("Hello World!")
    ],
    style={
        "padding": "0px",    #<---------- here
        "margin": "0px"      #<---------- here
    }
)
z2acfund

z2acfund2#

您可以使用子组合符选择器:

#_dash-app-content > div {
   padding: 0;
}

或者,您也可以使用元素的指定样式属性。
x一个一个一个一个x一个一个二个x

相关问题