關閉導覽列 Close Menu
數位文創
English
吳統雄
數位美學
電子書
數位視覺
優化網站
微電影
數位文創管理
大學青年網誌
研究目錄
教學課程頁
討論區目錄
站務與協助
☰
More
社群地圖
社群新聞
│吳統雄
履歷
研究
教學
服務
榮譽
│社科
第1類知識
第2類知識
第3類知識
研究方法
統計/多變項分析
投票行為與選舉預測
53237 選民結構
人類取用行為新典範
取用行為國際研究團隊
│資管
管理學‧經濟學
貨幣主義
數位貨幣‧投資行為
資訊系統開發
電子商務
網路教育
數位電視
產學合作
就業進修‧甄選必勝
│文創
數位美學/數位文創導論
數位出版/電子書
視覺設計
優化網站
數位視訊/微電影
數位文創管理
大學青年‧網路雜誌
│電音
統雄 數位音樂作品選
我,被禁唱的民歌手
雄歌經典音樂廳
數位音樂創作教學
統雄的音樂知識美學
歡迎聽歌.點歌.下載樂譜
我唱我歌-詞曲創作專欄
片言片語-歌曲評論專欄
│人文
公共評論
法律評論
社會評論
教育文化傳媒評論
科技科普評論
美語樂學
文學創作
萬象現代(NBA)
資訊社會
幽默人生
統雄樂水
Blocks: Web Tables Multifunction Applications

網頁表格設計與多元應用

圖文框設計:表格1.2.3/圖片/非圖表物件/圖層

數位出版設計:意涵/樣式篇Web Design: Blocks - Epistemological/Digital Aesthetics - Formation Methodology

數位出版設計:意涵/樣式篇網站/網頁設計:圖文框實作-知識美學/數位美學之建構方法

Blocks include pictures, tables and other objects such as shape and border, division, inline frames, embedded maps, photo gallery... etc.


Tables: Multifunction 網頁表格的多功能

Advantages: Space Allocation and Objects Integration

表格的多功能包括:空間規畫與物件整合。

-Dividing, shading, and mosaicking space.

-Designing the positioning, alignment of text, graphics and all objects.


Webpage Table Design 網頁表格設計

在 Html5 時代,宜先以CSS設計表格的視覺風格,實現套用表格樣式,與表格標題設計、表格欄位標題設計、表格與文字互轉。

以網頁編輯器的物件導向設計法,視覺設計的彈性與風格控制性較低。

Table Design with CSS 使用CSS 網頁表格設計

使用CSS網頁表格設計,常用的屬性與設定值設計方法如下。

更多範例,可參考 tx-14.css 範例檔。

General border design

.border1 {border: 1px solid #FFCC66;}

or

.border1 { border: 1px solid #FFCC66; font-family: Times New Roman; font-size: 14pt; text-align: left; vertical-align: top; margin: 0px; }
In this case, you do not have to specify the style for the cell contents.

Table Design: class and style 網頁表格類別與樣式的應用

網頁表格屬性class and style的應用,如以下「單元目錄設計」的範例。


Contents/Index Design 網頁表格實作:單元目錄設計

在網站各單元,每單元可以設計一個簡易目錄。

表格設計快訣

表格設計快訣,可以提供快而豐富的技巧。

>Table-Insert 插入表格

只設定紅框中項目,其他由CSS設定。

不論幾列,先設1列。

在 Html5 時代,強調視覺設計控制,故都依 px 指定寬度。

<文繞圖>視需求,是否調整。

Table-Insert 插入表格

〉套用樣式

點選〈table〉標籤後,套用表格樣式。

所選的樣式 class,會出現 CSS 提示。

套用表格樣式

再點選〈td〉標籤後,套用不同表格樣式。

套用表格樣式

設計介面的顯示結果。

點選〈table〉標籤後,套用表格樣式。

〉程式碼

轉〈程式碼〉介面,複製並取代〈td〉標籤。

可在此複製列 〈tr〉,或到〈設計〉介面,直接以右鍵插入列。

點選〈table〉標籤後,套用表格樣式。

以上的示範,強調視覺效果。

但真正的「單元目錄」不必太華麗,以下的單純設計較佳。

如果單元內的文章小於4,可以更簡單,就不必再加簡介與視覺輔助了。

請參考「知識美學」建議:美來自「對比」,不是所有的物件都求眩。


<caption> table 表格標題設計

表格標題、與表格欄位標題設計,必須在〈程式碼〉以手動設定。

如果表格有標題,則在<table>之後,立即設<caption>。

<caption>預設為內文、表格置中。

預設之<caption>可以使用 css 修改,通常改設為標題。

<th> table header 表格欄位標題設計

如果表格欄位有標題,則將第一列之標籤設為 <th>。

 <th>預設為內文加粗,細格置中。

如果有列標題,設計相同。

預設之<th>可以使用 css 修改,必要時,也可採進階的巢狀應用。

Usage of class and style to format tables
網頁表格設計CSS程式碼範例

使用 class 設計通用的樣式,如邊界、色彩、預設字型等。

使用 style 設計決定個別的度量,如寬度、高度等。

<table class="border1" style="width: 100%">
<caption>
<h4>Table of Contents 目錄</h4>
</caption>
<tr>
<th class="border1" style="width: 21%">
Title 標題
</th>
<th class="border1" style="width: 20%">
Author 作者
</th>
<th class="border1" style="width: 20%">
Note 簡介
</th>
<th class="border1" style="width: 40%">
Visual Assistance 圖解
</th>
</tr>
<tr>
<td class="border1" style="width: 21%">
<p class="tb-0">Link to article page</p></td>
<td class="border1" style="width: 20%">
<p class="tb-0">May link to personal page</p></td>
<td class="border1" style="width: 20%">
<p class="tb-0">Brief attraction to audience</p></td>
<td class="border1" style="width: 40%">
<p class="tb-0">Classified icons or a part of
main pictures.</p></td>
</tr>
</table>

以上程式碼的瀏覽結果如下。

The result is as the table in the following "Contents Design". 

Table of Contents 目錄

Title 標題 Author 作者 Note 簡介 Visual Assistance 圖解

Link to article page

May link to personal page

Brief attraction to audience

Classified icons or a part of main pictures.

advanced If you choose a setting other than the default, such as 'border collapse', Expression Web/ SharePoint will automatically add a system defined '.style1' into existing <style> tag, etc. While FP will make it as embedded syntax.

<style type="text/css">
.style1 {border-collapse: collapse;}
.style2 {border-style: solid; border-width: 2px;}
</style>


表格與文字互轉

所有微軟的 office 軟體,都具備表格與文字互轉功能。

跨軟體表格與文字互轉

如果要將 Word 的表格,以網頁編排,不宜直接複製、貼上,而正確處理程序如下:

1. 先在 Word 內將表格轉為文字。

2. 淨化 Word 格式。成果如下:

, 文書, 資料庫, 試算表, 繪圖, 通訊, 其他
當前, 80, 8, 7, 3, 1, 2
未來, 80, 8, 7, 33, 71, 2

3. 再將其檔案在 EW 內轉為表格。

先「全選」以上純文字。

〉表格

〉轉換

跨軟體表格與文字互轉

成果為以下無格式表格。

再套用表格樣式,與表格標題設計、表格欄位標題設計等。

 文書  資料庫  試算表  繪圖  通訊  其他
當前  80  8  7  3  1  2
未來  80  8  7  33  71  2

表格 css 意外錯亂表格 css 意外錯亂

在〈設計〉檢視下修改表格格式,會影響「表格作為內置網頁」時,預設 .css 之 class。

亦即 EW 會自動產生 internal css,而優先於 .css 檔案。

表格 css 意外錯亂範例:

<td class="border1"> 未設寬度

在〈設計〉檢視下修改表格寬度

 EW 會自動產生:

.auto-style1 {
border: 1px solid #FFCC66;
font-family: "Times New Roman", 標楷體;
font-size: 20px;
text-align: left;
vertical-align : top;
margin-top: 0;
margin-bottom: 0;
width: 64px;
}

該表格在獨立顯示時,沒有問題。

但作為「內置網頁」時,會發生錯亂。

修正方式:

在程式中,加入寬度,如:

<td class="border1" style="width: 64px"> 


<thead>, <tbody>, <tfoot> 跨頁表格設計<thead>, <tbody>, <tfoot> 跨頁表格設計

css 有支援大型跨頁表格設計的標籤,不過一般需求較少。

<thead>, <tbody>, <tfoot> 跨頁表格設計若有必要使用,請按此<thead>, <tbody>, <tfoot>連結。


Text Box 插欄設計

插欄是作為「提示」、「強調」、增加趣味非常好的物件。

作為短「提示」時,內文通常使用提示樣式,並不留列間距。

Text box is a good idea to protrude another short article which is relevant to the main body. It is also a good idea to indicate a specific element of a standard writing structure.

Text Box is a 1-row, 1-column table with specified borders and background.

Generally, the text in the box does not have margins.


Invisible Columns 多欄版面設計

Readability/ Space Efficiency

Visual Simplicity

The first reason you want to create columns is the 'readability' of avoiding fatigue after long reading.
According to the result of past recognition experiments, it suggests the best length of a row for reading is between 10 to 50 characters.
Since a standard screen length is 80 character wide, it will be a good idea to separate your article into columns, if you have a very long text.
Columns will save space as well, if you have many short paragraphs.
The second reason you want to use columns is you do not want your plane space looks too busy.
There is a criterion for deciding whether you want visible lines and grids or invisible ones.
If you have many broken pieces of objects, use visible lines. If you already have physical lines or virtual lines which are aligned by solid object, do not put more lines.
Do not let 'line over line', 'grid beside grid' and 'frame next frame' happen.

 

>Table-Insert-Border 插入 2 欄表格

The tip of invisible column is setting the border as '0' of a table.

For invisible column, design a larger cell padding and cell spacing.

It is recommended to create your columns by table more than by frames.

視覺增益與程式碼修訂

輸入標題、文字完成。

在〈設計〉介面,以滑鼠點選,出現<table>標籤。

〉套用樣式

選擇 .backgreen

以上設計,會使得欄間很密合,解決方案,是在<td>加入 style 的宣告、 padding-right 屬性、與適當的值,如以下程式碼。 

<table class="backgreen" style="width: 100%; " id="Invisible1">
<tr>
<td style="width: 50%;" class="border0" >
<h4>
Readability/ Space Efficiency</h4>
</td>
<td style="width: 50%" class="border0">
<h4>
Visual Simplicity</h4>
</td>
</tr>
<tr>
<td style="width: 50%; padding-right:14px;" class="border0" >
The first reason you want to create columns is the 'readability' of avoiding fatigue after long reading.<br>
According to the result of past recognition experiments, it suggests the best length of a row for
reading is between 10 to 50 characters. <br>
Since a standard screen length is 80 character wide, it will be a good idea to separate your article into
columns, if you have a very long text.<br>
Columns will save space as well, if you have many short paragraphs.<br>
</td>

<td style="width: 50%; padding-right:14px;" class="border0" >
The second reason you want to use columns is you do not want your plane space looks too busy.<br>
There is a criterion for deciding whether you want visible lines and grids or invisible ones.<br>
If you have many broken pieces of objects, use visible lines.
If you already have physical lines or virtual lines which are aligned by solid object, do not put more lines.<br>
Do not let 'line over line', 'grid beside grid' and 'frame next frame' happen.<br>
</td> </tr>
</table>

CSS 多欄版面設計CSS 多欄版面設計

CSS 多欄版面設計,目前各瀏覽器尚未統一支援。

各瀏覽器還必須指定不同前置命令,如:

-moz- 火狐

-webkit- Chrome


advanced CSS3 Property: background-image

CSS3 網頁表格屬性背景圖片設計與應用

CSS3 網頁表格屬性背景圖片設計,一定必須用 style方法,如以下程式碼的設計與成果:

<table style=" width: 100%; height: 70px; background-image: url('../!TxTemp/TxBanner.gif');" class="center" id="table1">
<tr><td><p><span class="banner-text">橫幅標題</span></p>
</td></tr>
</table>

橫幅標題

CSS2 與阿帕契伺服器CSS2 背景圖片設計與阿帕契伺服器

CSS2 background-image and Apache HTTP Server

在CSS2 時代, 網頁表格背景圖片設計一般是以類別別別class方法為準,如以下的橫幅區塊設計:

<table style="width: 100%; height: 85px;" class="banner">
<tr><td><p class="banner-text">Blocks: Tables</p>
</td></tr>
</table>

其中之類別class為.banner,宣告如下:

.banner { background-image: url('txbanner.gif'); text-align:center; }

但在阿帕契伺服器(至少2.2之前)上,即使是 CSS2,應用class作網頁表格背景圖片,還是會發生無法顯示的錯誤,必須改用上節 style方法,


Tables Advanced Applications and Objects Integration 網頁表格進階應用與物件整合

回頁首 Up to page head 至相關主題 Go to related pages
上一頁 Back to previous page 回頁首 Up to page head 下一頁 Go to next page
留言區因雲端系統重整,暫停開放。敬請以電子郵件留言。 同類別內相關主題

數位文創線上講義總目

數位文創目錄 數位美學‧數位文創導論目錄

Introduction to Digital Aesthetics and
Digital Contents/ Cultural Content Creation

數位文創目錄 數位文創製作管理目錄

Project Management in
Digital Contents/ Cultural Content Creation 

數位文創目錄 數位視覺設計‧影象處理目錄

Visual Design and Digital Imaging
Design and Production

數位文創目錄 數位出版(DTP)設計製作目錄

Digital Publishing/ Desktop Publishing
Design and Production

數位文創目錄 網路文創設計製作目錄

Web-based and Interactive Cultural Creation
Design and Production 

數位文創目錄 數位視訊設計製作目錄

Storyboard and Digital Video
Design and Production 

數位音樂特區 數位音樂特區目錄 TX Midi Zone

Listening Design and Digital Music
Design and Production 

數位文創目錄 數位文創設計製作習題

Exercises and Hand-on Works in
Digital Contents/ Cultural Content Creation 

數位文創目錄 數位文創庫存講義目錄

Achieved Readings and Deprecated Techniques

創用 CC 授權條款 此作品衍生自「統雄網路社群 TX Web Community」,由 吳統雄 Sean TX Wu 製作,以 創用CC 姓名標示-非商業性-相同方式分享 3.0 Unported 授權條款 釋出。此條款之授權同時適用於 https://seantxwu.pages.dev/ 下,與 http://tx.shu.edu.tw 下,除特別標明外之所有媒體形式著作物。
本網群為公益服務,瀏覽者須接受以下聲明方可瀏覽: 著作權聲明-Copyright © 吳統雄: 申請引用資訊- 免責聲明- 鳴謝:本網路社群之開發曾受國內外機構、包括臺灣大學補助。

Copyrights of TX Web Community This is a public service web community under a "Creative Commons" license. You must accept the following statements before entering: Copyright © Sean TX Wu, All Rights Reserved. Request for Citation, Disclaimer, and Acknowledgement.
內容網站:提供與分享各種知識、資訊、作品。互動群組:社員可以討論、展示、交流、企畫、分工、管理、投票決策。合作群組:Web2.0的民主自治精神,社員可以參與決定群組的內容與表現形式。

吳統雄的音樂-Sean TX Wu's Music  笑話中學美語-Humor and American English Learning   私人來信-Write a private mail to Sean TX Wu  留言與討論 Leave Comments/ Forum 吳統雄的相簿-Sean TX Wu's Album

只在「統雄社群」內查詢以下主題 Search in TXCommunity

統雄網群的Google排行本站Google排行榜‧全球冠軍
統雄社群-相關主題
Tables Multifunction 多功能表格
Table Design 網頁表格CSS設計
Contents/Index Design 目錄設計
<caption><th> 表格欄位標題設計
網頁表格設計CSS程式碼範例
表格與文字互轉
表格 css 意外錯亂
<tbody> 跨頁表格設計
Text Box 插欄設計
Invisible Columns 多欄版面設計
網頁表格屬性背景圖片設計
CSS3 邊框增益式設計
設計使用者 class
CSS3 凸型邊框設計
Gradient design of borders 漸層式邊框設計
Objects Integration 物件整合
Wrap 盤文-文繞框設計
Asymmetrical Design 非對稱設計
The width of cells- NBSP string 細格內寬度控制
Creative Design 創意版面設計
雙色表格 :nth-child() 應用
Vertical Title 直題設計
Questionnaires 問卷設計
取用模式研究國際團隊 Adoption Modeling International Research Team 合作群組取用模式
國際研究群
吳統雄的研究、教學、與作品 Sean TX Wu's Research, Teaching and Art Works 內容網站第3類知識
互動群組研究方法
內容網站數學樂學
內容網站美語樂學
內容網站人文社會
互動群組產學合作
資訊管理/資訊科技/資訊系統 Information Management/ Information technology/ Information Systems 合作群組資管教育
互動群組資訊管理
內容網站電子商務
內容網站網路教育
數位文創 Digital Cultural Content Creation 內容網站數位文創
合作群組大學青年
合作群組數位電視
互動群組美學實驗
數位音樂 Digital Music 內容網站數位音樂
內容網站社會參與
內容網站文學創作
投票行為、選舉預測與其他行為研究 Election Prediction and Other Behavioral Research 內容網站選舉行為
互動群組其他專題
第3類知識 The 3rd Knowledge 合作群組接龍實驗
互動群組招親實驗
互動群組公投實驗
互動群組量尺實驗
互動群組舞者實驗
年度20大點播音樂

偶然
金蟠桃
水調歌頭
請你,天明再離開我
點燭
別離
挖呀挖
稚情(嫦娥)
天亮歌
願意
墟
思念
華靈廟
Panda
團團和圓圓

相逢
媽媽的愛心
從此
笑笑歌
幕落(必然)
上山打野狼

研究與講義目錄

研究方法講義目錄
統計多變項分析講義
資訊管理講義目錄
數位文創/數位內容講義目錄
數位音樂講義目錄
產學合作-就業進修講義目錄
人文素養-人與社會講義目錄
人類行為+資訊管理研究目錄
網路使用/電子商務研究目錄
網路教育研究目錄
數位音樂作品目錄

在「瀏覽時間」前50%以內,剔除工具頁(如SharePoint應用)、簡介頁(如統雄曲目)、互動頁(如討論區)。粉底文章亦同屬年度20大瀏覽時間。

統雄-統計神掌 因素分析篇
性幻想行為簡說:格雷的五十道陰影
作業流程圖範例
UML
:統一塑模語言與流程圖

信度與效度分析
統雄-統計神掌 共變數分析篇
統雄-統計神掌 調節模型篇
統雄-統計神掌 多元迴歸篇
投考-甄試研究所之自傳秘笈
統雄-統計神掌簡單迴歸/相關分析
統雄-統計神掌 變異數分析篇
MIS:管理資訊系統
多氯聯苯大追兇
和聲與和弦進行設計
統雄-統計神掌SPSS篇
統雄-統計神掌中介模型分析篇
學術論文寫作法
統雄-統計神掌因素效度分析篇
研究所甄試之研究計畫秘笈
統雄-統計神掌多變項精華篇
問卷設計流程圖-範例
電子郵件亂碼的解決
統雄-統計神掌易筋經
定量方法對定性方法
統雄-統計神掌因徑/結構方程模型1
六藝:多元學習的詮釋與實踐
個案研究法/參與觀察法
文獻研究法
和聲與和弦分析
實驗法、準實驗法
歷史記錄

在「點閱數」前50%以內,剔除工具頁(如SharePoint應用)、簡介頁(如統雄曲目)、互動頁(如討論區)、與已經出現在同屬「年度20大點閱數」之頁。

網路使用行為研究方法
視訊後製作程序
爸爸
大學青年‧網路雜誌
網頁3大基本語言與編輯軟體
科學知識產生的程序
打二房別亂了套 
1篇30年後引起迴響的文章
向老大哥WGA說不! 
知識美學與數位美學 
我,被禁唱的民歌手
金蟠桃 第一幕 樂園
偶然、或然、必然 音樂劇4
接龍實驗-結果討論
MIS專案進度管理甘梯圖
知律,破律,又合於律
真實美語/生活英語選
當代流行歌 又吵又欠缺變化
職業化快閃影片創作品析
驗證式SEM解析篇-計畫行為論
歷史記錄

這裡有我在30餘年教學經驗中的學習與分享。

教改‧我先走了三十年教改‧我先走了三十年
教學的理念、實踐與感受教學的理念、實踐與感受
其實,每個人都可以唸臺大其實,每個人都可以唸臺大
2012總統選舉預測 2012總統選舉預測
大任務‧小使者大任務‧小使者
Fulbright Project Fulbright Project
統雄老師領導的美國喬治亞理工
Adoption Model國際研究群
Westgate FraudWestgate Fraud
e世代公共服務新聞宣言e世代公共服務新聞宣言
虛擬整合校園虛擬整合校園
請將連結不到網頁的網址,寄給統雄老師,謝謝!連結不到網頁

請按此,至友站列表。並歡迎同好加入友站。