iT邦幫忙

2022 iThome 鐵人賽

DAY 4
0
Modern Web

網頁切版入門及版面實作系列 第 4

[DAY4]網頁切版入門及版面實作_CSS Reset

  • 分享至 

  • xImage
  •  

重置CSS的CSS樣式表

將網頁排版在各瀏覽器快速一致化,接下來的所有範例都需要使用

主要原因是每一個瀏覽器所使用的預設樣式皆不同,去呈現我們所設計的網頁外觀,這樣當我們每個瀏覽器外觀都不同時,有時候產生的間距或是線條等等問題不知道是從哪邊或是誰產生,這樣也就也不知道是寫在哪個標籤上,如果我們不統一全部瀏覽器樣式的話,這些問題就會導致我們在製作網頁畫面時非常麻煩,不方便去解決問題,因此避免為了樣式全部一模一樣的狀況才需要重置CSS

其實有很多種重置CSS的寫法,但對於新手剛上路還是會建議先用Eric A. Meyer所撰寫的css reset會比較簡單容易上手。

明天開始要進行切版練習,就會用需要用到重置CSS,但通常撰寫css reset的文件我會把他跟撰寫網頁外觀樣式的style.css分開放,比較不會寫到混亂。


css reset如下方程式碼所示:

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

參考資料
https://meyerweb.com/eric/tools/css/reset/


上一篇
[DAY3]網頁切版入門及版面實作_CSS介紹
下一篇
[DAY5]網頁切版入門及版面實作_範例版面介紹
系列文
網頁切版入門及版面實作30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

0
Wen Chien
iT邦新手 4 級 ‧ 2022-10-03 16:29:39

我都偷懶直接用*

ruhui0726 iT邦新手 4 級 ‧ 2022-10-04 09:05:13 檢舉

*很萬能哈哈哈 我都是練習才偷懶用萬用選取/images/emoticon/emoticon01.gif

我要留言

立即登入留言