亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS ?? ? ???

???? ?? ???? ??? ??? ??? ?? ?? ?? ?????? ????? ??? ?? ???? ?? ??? ???. CSS? ?? ? ?? ?? ?? html ??? ???? ??? ? ????. ??? ?? ?? ??? ??? ?? ???? ????.

????? ?? ? ???

????? ??? ??? ???? ?? ?? ??? ?????.

??

? ??? ???? ?? ? ???? ???? ?? ?? ??? ???? ? ?????. HTML? ?? ?? ??? ?? ????? ??? ???? HTML? ?? ??? ?? ?? ??? ??? ? ???? ??? ? ????. XML? ?? XML?? ??? ??? ?? ??? ???? ?? ???? ?? ??? ????? ?????.

??? ?


? none ? ??? ???? ????.

block ? ??? ? ?? ??? ? ??? ?? ?? ?? ??? ?????.


??? ???. ? ??? ?? ??? ?? ? ??? ?? ??? ??? ?????.

inline-block ??? ?? ?????. (CSS2.1? ??? ?)

list-item ? ??? ???? ?????.

run-in ? ??? ??? ?? ?? ?? ?? ?? ??? ??? ?????.

compact CSS?? Compact ?? ??? ??? ??? ???? CSS2.1??? ???????.

?? CSS?? ? ??? ??? ??? ??? ???? CSS2.1??? ???????.

table ? ??? ??? ??? ? ??? ?? ?? ?? ???(<table>? ??)? ?????.

inline-table ? ??? ??? ??? ? ?? ?? ??? ???(<table>? ??)? ?????.

table-row-group ? ??? ?? ??? ? ???? ?????(<tbody>? ??).

table-header-group ? ??? ?? ??? ? ???? ?????(<thead>? ??).

table-footer-group ? ??? ?? ??? ? ???? ?????(<tfoot>? ??).

table-row ? ??? ??? ??? ?????(<tr>? ??).

table-column-group ? ??? ?? ??? ? ???? ?????(<colgroup>? ??).

table-column ? ??? ? ?? ?????(<col>? ??)

table-cell ? ??? ??? ?? ?????(<td>? ??). ; ? <th>)

table-caption ? ??? ??? ???? ?????(<caption>? ??).

inherit? ?? ??? ?? ??? ??? ?? ?????. ?? ???? ?????.

?:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>實例</title> 
<style type="text/css">
.inline{display:inline; width:100px; height:100px; padding:5px; background-color:#F00;}
.block{display:block; width:100px; height:100px; padding:5px;background-color:#0f0;}
.inline-block{display:inline-block; width:100px;height:100px; padding:5px;background-color:#00f;}
</style>
<body>
<span class="inline">
inline
</span>inline
<span class="block">
block
</span> block
<span class="inline-block">
inline-block
</span>inline-block
</body>
</html>

??? ?? ? ???

??? ??? ??? ???? ??? ?????. ?????.

?: ??? ?? ??? ??? ??? ?????. ??? ??? ???? ?? ??? ?? ??? ???? "display" ??? ?????.

??

??? ?? ??? ?? ??? ???? ??? ???? ?????. ?? ??? ??? ?? ??? ????? ??? ??? ?? ? ??? ?????. ? ??? ??? ?????? ??? ?? ???? ?? ????? ?????.

??? ?


???????????????????????????????????????????????????????? ??????. ??? ?????.

??? ??? ??? ????.


collapse ??? ???? ? ?? ???? ??? ?? ??? ? ??? ??? ?????? ??? ?? ????. ??? ?? ???? ??? ?? ???? ??? ? ????. ? ?? ?? ??? ???? "??"?? ??????.

inherit? ??? ??? ?? ?? ???? ????? ?? ?????.

?:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>實例</title> 
<style type="text/css">
.visibilityHidden { visibility: hidden; }
.visibilityVisible { visibility: visible; }
</style>
<body>
<!-- 注意第一個圖片雖然隱藏了,但是位置還是被占據(jù)的 -->
<p>
    <a href="#" class="visibilityHidden">
        <img src="http://img.educity.cn/article_image/2013082620/321090200502.jpg" />
    </a>
</p>
<p>
    <a href="#" class="visibilityHidden">
        <img class="visibilityVisible" src="http://img.educity.cn/article_image/2013082620/321090200502.jpg" />
    </a>
</p>
</body>
</html>

CSS ?? - ?? ? ??? ??

?? ??? ?? ??? ???? ??? ???? ?? ?????.

?? ??? ?:

<h1>

<p>

<div>

??? ??? ??? ??? ???? ? ??? ??? ???? ????.

??? ??? ?:

<span>

<a>

??? ???? ?? ??

??? ??? ?? ??? ????? ? ??? ???? ???? ?? ???? ?????? ??? ? ??? ????? ? ? ????.

?? ???? ?? ??? ??? ??? ?????.

li {display:inline;}

?? ???? ?? ??? ?? ??? ?????.

span {display:block;}

??: ??? ?? ??? ???? ??? ???? ??? ??? ??? ?????. ?? ??, display:block?? ??? ??? ??? ? ?? ??? ?? ??? ?? ? ????.


???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>實例</title> <style type="text/css"> p {display:inline;} span { display:block; } </style> <body> <p>上海銀監(jiān)局召集轄內(nèi)機(jī)構(gòu)高層開會,發(fā)出嚴(yán)控房地產(chǎn)貸款風(fēng)險的警示。</p> <p>據(jù)新華社電住建部通報杭州、深圳樓市散布謠言案例,要求各地依法嚴(yán)肅查處散布謠言擾亂房地產(chǎn)市場秩序的違法違規(guī)行為。</p> <br><br> <span> 香港市場成全球募資王</span> <span>混改試點望啟動</span> </body> </html>