HTML DOM 快速導覽 - 樣式設定的屬性 display

CSS 樣式表 (cascading style sheets) 的 display 性質 (property) 可控制 HTML 元素 (element) 的呈現方式,亦可由 JavaScript 程式取得元素物件,再用 style 的屬性 (attribute) display 進行設定。



dispaly 的設定值如下
  • inline
  • block
  • list-item
  • inline-block
  • table
  • inline-table
  • table-row-group
  • table-header-group
  • table-footer-group
  • table-row
  • table-column-group
  • table-column
  • table-cell
  • table-caption
  • none
  • inherit


常用的為 inlineblock ,分別是行內元素 (inline element) 與區塊元素 (block element) ,舉例如下
function run00(demo) {
    demo.style.display = "inline";
}

/* 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:style027.js
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 */


此例中我們將相關元素設定為 inline ,也就是行內元素
demo.style.display = "inline";


我們以下面的 HTML 文件載入
<!DOCTYPE html>
<html>
<head>
<title>HTML DOM DEMO</title>
<script src="style027.js" type="text/javascript"></script>
<style>
div {
    width: 200px;
    height: 100px;
    border: 2px solid black;
}
</style>
</head>
<body>
<div onclick="run00(this);">There is no spoon.</div>
<div onclick="run00(this);">There is no spoon.</div>
<div onclick="run00(this);">There is no spoon.</div>
<div onclick="run00(this);">There is no spoon.</div>
</body>
</html>

<!-- 《程式語言教學誌》的範例程式
     http://pydoing.blogspot.com/
     檔名:style027.html
     功能:示範 JavaScript 程式 
     作者:張凱慶
     時間:西元 2011 年 8 月 -->


瀏覽器 (browser) 開啟, <div> 預設為區塊元素,所以四個 <div> 就是從上到下依序排列



點擊後三個 <div> ,使這三個 <div> 變成行內元素,結果如下



中英文術語對照
CSS 樣式表cascading style sheets
性質property
元素element
屬性attribute
行內元素inline element
區塊元素block element
瀏覽器browser


您可以繼續參考
CSS 範例

樣式設定物件 style


相關目錄
HTML DOM 快速導覽
JavaScript 教材
首頁


參考資料
https://developer.mozilla.org/en/DOM/CSS
https://developer.mozilla.org/en/CSS/display

沒有留言: