1. div的基本概念
<div>This is a div tag.</div>
2. div的使用方法
2.1 div的class属性
<div class="container">This is a div tag with class name "container".</div>
<style>
.container {
color: black;
background-color: white;
border: 1px solid black;
padding: 5px;
}
</style>
2.2 div的id属性
<div id="header">This is the header of a webpage.</div>
2.3 div的嵌套使用
<div class="container">
<div class="header">This is the header.</div>
<div class="content">This is the main content.</div>
<div class="footer">This is the footer.</div>
</div>
<style>
.container {
width: 80%;
margin: 0 auto;
border: 1px solid black;
}
.header {
height: 50px;
background-color: #258ADA;
color: white;
text-align: center;
line-height: 50px;
}
.content {
padding: 20px;
}
.footer {
height: 30px;
background-color: #258ADA;
color: white;
text-align: center;
line-height: 30px;
}
</style>