最新的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