溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

css如何重設(shè)瀏覽器默認(rèn)樣式

發(fā)布時(shí)間:2021-10-14 14:19:43 來源:億速云 閱讀:252 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“css如何重設(shè)瀏覽器默認(rèn)樣式”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“css如何重設(shè)瀏覽器默認(rèn)樣式”這篇文章吧。


代碼如下:


@charset "utf-8";
/*
@名稱: base
@功能: 重設(shè)瀏覽器默認(rèn)樣式
*/
/* 防止用戶自定義背景顏色對(duì)網(wǎng)頁的影響,添加讓用戶可以自定義字體 */
html {
color:black;
background:white;
}
/* 內(nèi)外邊距通常讓各個(gè)瀏覽器樣式的表現(xiàn)位置不同 */
body,div,dl,dt,dd,ul,ol,li,h2,h3,h4,h5,h6,h7,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
margin:0;
padding:0;
}
/* 要注意表單元素并不繼承父級(jí) font 的問題 */
body,button,input,select,textarea {
font:12px SimSun,tahoma,arial,sans-serif;
}
input,select,textarea {
font-size:100%;
}
/* 去掉各Table cell 的邊距并讓其邊重合 */
table {
border-collapse:collapse;
border-spacing:0;
}
/* IE bug fixed: th 不繼承 text-align*/
th {
text-align:inherit;
}
/* 去除默認(rèn)邊框 */
fieldset,img {
border:none;
}
/* ie6 7 8(q) bug 顯示為行內(nèi)表現(xiàn) */
iframe {
display:block;
}
/* 去掉 firefox 下此元素的邊框 */
abbr,acronym {
border:none;
font-variant:normal;
}
/* 一致的 del 樣式 */
del {
text-decoration:line-through;
}
address,caption,cite,code,dfn,em,th,var {
font-style:normal;
font-weight:500;
}
/* 去掉列表前的標(biāo)識(shí), li 會(huì)繼承 */
ol,ul {
list-style:none;
}
/* 對(duì)齊是排版最重要的因素, 別讓什么都居中 */
caption,th {
text-align:left;
}
/* 來自yahoo, 讓標(biāo)題都自定義, 適應(yīng)多個(gè)系統(tǒng)應(yīng)用 */
h2,h3,h4,h5,h6,h7 {
font-size:100%;
font-weight:500;
}
q:before,q:after {
content:'';
}
/* 統(tǒng)一上標(biāo)和下標(biāo) */
sub, sup {
font-size:75%;
line-height:0;
position:relative;
vertical-align:baseline;
}
sup {
top:-0.5em;
}
sub {
bottom:-0.25em;
}
/* 讓鏈接在 hover 狀態(tài)下顯示下劃線 */
a:hover {
text-decoration:underline;
}
/* 默認(rèn)不顯示下劃線,保持頁面簡(jiǎn)潔 */
ins,a {
text-decoration:none;
}
/* IE6,7焦點(diǎn)點(diǎn)狀線去除 */
a:focus,*:focus {
outline:none;
}
/* 清除浮動(dòng) */
.clearfix:before,.clearfix:after {
content:"";
display:table;
}
.clearfix:after {
clear:both;
overflow:hidden;
}
.clearfix {
zoom:1; /* for IE6 IE7 */
}
.clear{
clear:both;
display:block;
overflow:hidden;
height:0;
line-height:0;
font-size:0;
}
/* 設(shè)置顯示和隱藏, 通常用來與 JS 配合 */
.hide {
display:none !important;
visibility:hidden;
}
.block {
display:block !important;
}
/* 設(shè)置內(nèi)聯(lián), 減少浮動(dòng)帶來的bug */
.fl {
float:left;
display:inline;
}
.fr {
float:right;
display:inline;
}

以上是“css如何重設(shè)瀏覽器默認(rèn)樣式”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI