css 扩展的边距< div>,使其看起来不像框[duplicate]

j9per5c4  于 2022-11-26  发布在  其他
关注(0)|答案(2)|浏览(111)

此问题在此处已有答案

How wide is the default <body> margin?(3个答案)
两个月前关门了。
此帖子已在3天前编辑并提交审核,无法重新打开帖子:
原始关闭原因未解决
第一个
当我使用div并设置其尺寸时,it looks like this now

and it should look like this with left and top borders filled
我总是觉得它看起来像一个盒子,它不能像图中所示的那样填充所有的边框。我该如何解决这个问题呢?尺寸是这样设置的:第一个是the div本身,第二个是框内的内容,发生的情况是左角固定,而它继续前进到右侧。我如何设置边框以扩展到整个文档?

.banner-ministero{
    width: 200%;
    height: 1%;
    background-color: #f5f5f5;
    text-align: left;
}
.logo-min{
    width: 8%;
    height: 0.5%;
    padding-left: 9.5%;
}
7rtdyuoh

7rtdyuoh1#

尝试添加边距:0;到body标签
第一个

dw1jzc5e

dw1jzc5e2#

尝试

.banner-ministero{
    margin-left:0px;
    margin-top:0px;
}

相关问题