块元素的特性:
<style>
.first {
width: 100px;
height: 100px;
background-color: blue;
}
.second {
height: 100px;
background-color: green;
}
.third {
background-color: red;
}
</style>
<div class="first">第一个块元素</div>
<div class="second">第二个块元素</div>
<div class="third">第三个块元素</div>
行内元素的特性:
<style>
.first {
background-color: blue;
}
.second {
background-color: green;
}
.third {
background-color: red;
}
</style>
<span class="first">第一个行内元素</span>
<span class="second">第二个行内元素</span>
<span class="third">第三个行内元素</span>
行内块元素的特性:
<style>
.first {
background-color: blue;
}
.second {
height: 100px;
width: 100px;
background-color: green;
}
.third {
background-color: red;
}
</style>
<input class="first" placeholder="第一个行内块元素"/>
<input class="second" placeholder="第二个行内块元素"/>
<input class="third" placeholder="第三个行内块元素"/>
<html>
、<body>
、<h1>-<h6>
、<hr>
、<p>
、<pre>
、<div>
<ul>
、<ol>
、<li>
、<dl>
、<dt>
、<dd>
<table>
、<tbody>
、<thead>
、<tfoot>
、<tr>
、<caption>
<form>
、<option>
<br>
、<em>
、<strong>
、<sup>
、<sub>
、<del>
、<ins>
、<a>
、<label>
<img>
、<td>
、<th>
、<input>
、<textarea>
、<select>
、<button>
、<iframe>
/* block:设置为块元素 */
/* inline:设置为行内元素 */
/* inline-block:设置为行内块元素 */
/* none:隐藏元素 */
选择器 {
display: block;
}