最新的Web開發教程
×

CSS 參考

CSS 參考 CSS 選擇器 CSS 功能 CSS 參考聽覺 CSS 網絡安全字體 CSS 動畫 CSS 單位 CSS PX-EM轉換器 CSS 顏色 CSS 顏色 值 CSS3 瀏覽器支持

CSS 屬性

align-content align-items align-self all animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-shadow box-sizing caption-side clear clip color column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset cursor direction display empty-cells filter flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float font @font-face font-family font-size font-size-adjust font-stretch font-style font-variant font-weight hanging-punctuation height justify-content @keyframes left letter-spacing line-height list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top max-height max-width @media min-height min-width nav-down nav-index nav-left nav-right nav-up opacity order outline outline-color outline-offset outline-style outline-width overflow overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page-break-after page-break-before page-break-inside perspective perspective-origin position quotes resize right tab-size table-layout text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-style text-indent text-justify text-overflow text-shadow text-transform top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi vertical-align visibility white-space width word-break word-spacing word-wrap z-index



 

CSS display Property


顯示<p>元素作為內聯元素:

p.inline {
    display: inline;
}
試一試»

更多"Try it Yourself"下面的例子。


定義和用法

顯示屬性指定用於HTML元素框的類型。

默認值: inline
遺傳: no
動畫: no. Read about animatable
版: CSS1
JavaScript語法: object .style.display="none" Try it

瀏覽器支持

在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。

屬性
display 4 8
從5.5分
3.0 3.1 7

Note:值"inline-table""table""table-caption""table-cell""table-column""table-column-group""table-row" ,和"table-row-group" ,不支持在IE7和更早版本。 IE8需要一個!DOCTYPE。 IE9支持值。

注:"flex""inline-flex"需要一個前綴在Safari工作。 對於"flex"使用"display: -webkit-flex"對於"inline-flex"使用"display: -webkit-inline-flex;"


CSS語法

display:value;

屬性值

描述 播放
inline 默認值。 顯示元素作為內聯元素(like <span>) 播放 ”
block 顯示元素作為一個塊元素(like <p>) 播放 ”
flex 顯示元素作為一個塊級Flex容器。 新的CSS3
inline-block 顯示元素作為一個行內塊容器中。 該塊的內部被格式化為塊級框,並且元件本身被格式化為一個行內框
inline-flex 顯示元素作為一個行內柔性容器。 新的CSS3
inline-table 元素顯示為一個行內表
list-item 讓元素表現得像個<li>元素 播放 ”
run-in 顯示一個元素作為阻止或內聯,根據上下文
table 讓元素像一個<table>元素
table-caption 讓元素表現得像個<caption>元素
table-column-group 讓元素表現得像個<colgroup>元素
table-header-group 讓元素表現得像個<thead>元素
table-footer-group 讓元素表現得像個<tfoot>元素
table-row-group 讓元素表現得像個<tbody>元素
table-cell 讓元素像一個<td>元素
table-column 讓元素表現得像個<col>元素
table-row 讓元素像一個<tr>元素
none 該元件將不會在所有顯示(has no effect on layout) 播放 ”
initial 將此屬性設置為默認值。 閱讀關於初始 播放 ”
inherit 繼承其父元素此屬性。 閱讀關於繼承

例子

更多示例

如何使用繼承屬性值的演示:

body {
    display: inline;
}

p {
    display: inherit;
}
試一試»

設置的裡面的一些靈活的項目方向<div>以相反的順序元素:

div {
    display: -webkit-flex; /* Safari */
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    display: flex;
    flex-direction: row-reverse;
}
試一試»

相關頁面

CSS教程: CSS顯示和知名度

HTML DOM參考: display property