<!--...-->
- 做註解使用,瀏覽器不會顯示,不會執行。
- 用以紀錄解說代碼使用,便於理解,修改、維護。
<main>....</main>
- 用以表述這是文件document的主要內容。
- 在 main 裡面的元素在文件中必須是唯一的
- 他不應該存在一些會在文件的其他地方可能會重複出現的元素,例如:選單、鏈結、版權宣告、LOGO、搜尋表單等。
- 一個文件 document 只能有一個 main
- main 不能是 以下 元素 的子元件:<article>, <aside>, <footer>,<header>,<nav>
- 可以搭配 CSS 來定義 <main> 元件(element)
<html>
<head>
<style>
main {
margin: 0;
padding: 5px;
background-color: lightgray;
}
main
> h1, p, .browser {
margin: 10px;
padding: 5px;
}
.browser {
background: white;
}
.browser > h2,
p {
margin: 4px;
font-size: 90%;
}
</style>
</head>
<body>
<main>
<h1>Most
Popular Browsers</h1>
<p>Chrome, Firefox, and Edge are the
most used browsers today.</p>
<article class="browser">
<h2>Google Chrome</h2>
<p>Google Chrome is a web browser
developed by Google, released in 2008. Chrome is the world's most popular web
browser today!</p>
</article>
<article class="browser">
<h2>Mozilla Firefox</h2>
<p>Mozilla Firefox is an
open-source web browser developed by Mozilla. Firefox has been the second most
popular web browser since January, 2018.</p>
</article>
<article class="browser">
<h2>Microsoft Edge</h2>
<p>Microsoft Edge is a web browser developed by Microsoft, released in 2015.
Microsoft Edge replaced Internet Explorer.</p>
</article>
</main>
</body>
</html>
沒有留言:
張貼留言