1. 程式人生 > >(2)html 塊類

(2)html 塊類

color 元素 html htm code nbsp 引用 cnblogs ack

span

span是內聯元素,內聯元素的特點:在顯示時通常不會以新行開始

div

div是塊級元素,塊級元素會換新行

class

設置

<head>
<style>
.cities {
    background-color:black;
    color:white;
    margin:20px;
    padding:20px;
} 
</style>
</head>

引用

<div class="cities">
.
.
.
</div>

(2)html 塊類