Rumah > Artikel > hujung hadapan web > css display属性怎么用
display属性定义及用法
display属性在网页布局中用的非常之多,它的属性值也比较多,但是用的多的就block、inline-block、inline和none属性值,其它属性值很少见,所有在这就重点介绍一下常用的这几个属性值的用法;
在css中,display属性是用来定义元素应该生成的框的类型,经常用来将块状元素转换为内联元素、将内联元素转换为块状元素或者将块状元素/内联元素转换为inline-block元素,inline-block元素既有块状元素的特性已有内联元素的特性。
display属性语法格式
1.css语法:display:none/inline/block/inline-block/list-item/run-in/table/inline-table/table-row-group/table-header-group/table-footer-group/table-row/table-colume-group/table-column/table-cell/table-caption/inherit
2.JavaScript 语法: object.style.display="inline"
display属性值说明
none:设置元素不显示
block:设置元素为块级元素
inline:设置元素为内联元素
inline-block:行内块元素,既有块状元素的特性已有内联元素的特性
list-item:设置元素为列表
run-in:根据上下文作为块级元素或内联元素显示
compact / marker:已经从CSS2.1中删除
table:设置元素为块级表格来(类似 f5d188ed2c074f8b944552db028f98a1),表格前后有换行符
inline-table:设置元素为内联表格(类似 f5d188ed2c074f8b944552db028f98a1),表格前后没有换行符
table-row-group:设置元素为一个或多个行的分组(类似 92cee25da80fac49f6fb6eec5fd2c22a)
table-header-group :类似 ae20bdd317918ca68efdc799512a9b39标签
table-footer-group:类似 06669983c3badb677f993a8c29d18845标签;table-row :类似 a34de1251f0d9fe1e645927f19a896e8标签
display属性的none属性值
元素的display属性的属性值设置为none时,该元素将隐藏不显示,而其会脱离文档流,不占据网页空间;非常相关:css隐藏元素之display和visibility属性的用法笔记
实例
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>display属性的none属性值</title> <style type="text/css"> body{background-color: #aaa;} .div{width:400px;height:60px;border:1px solid;margin-top:10px;} .none{display:none;} </style> </head> <body> <div class="div">元素1</div> <div class="div none">元素2</div> <div class="div">元素3</div> </body> </html>
Atas ialah kandungan terperinci css display属性怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!