gpt4 book ai didi

html - 包裹整个主体的
的值(value)是什么?

转载 作者:搜寻专家 更新时间:2023-10-31 23:03:20 24 4
gpt4 key购买 nike

我正在为一家公用事业公司接管网站维护工作。之前的开发者使用了更多<div>比我会的。大多数对我来说都有意义,但我对这个感到困惑:

<html>
<head></head>
<body>
<div id="wrapper">
<!-- All of the page content - header, footer, whatever -->
</div>
</body>
</html>

<body> 中的所有内容标签被一个额外的名为 <div> 包围.在它之前或之后什么都没有。

拥有 <div> 有好处吗?那里?我的理解是所有样式都可以直接应用于 <body>效果相同。如果我只是声明 <body id="wrapper">,即使 JavaScript 也可以做同样的事情,不是吗?

最佳答案

它通常用于样式化,例如,

body{
background-color: #FFF;
}
#wrapper{
background-color: #000;
width: 80%;
margin: 0 auto;
}

上面是页面上一个简单的 ~10% 的左右白色边框。


虽然有点 OT,但没有用于此的 HTML5 元素。我看过 <main>取而代之的是,引用自 the MDN article for <main> :

The main content area consists of content that is directly related to, or expands upon the central topic of a document or the central functionality of an application. This content should be unique to the document, excluding any content that is repeated across a set of documents such as sidebars, navigation links, copyright information, site logos

关于html - 包裹整个主体的 <div> 的值(value)是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24638030/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com