欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css清除瀏覽器默認設置

錢多多1年前8瀏覽0評論

CSS是一種用于美化網頁的語言,但是它的一些樣式可能會被瀏覽器默認的樣式覆蓋。這就是我們需要進行清除的原因。

清除瀏覽器默認設置的方法之一是使用reset.css文件。這個文件包含了一些對常見元素的樣式,將它們還原為原始狀態。另一個方法是手動編寫樣式表。

/* CSS reset */
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 {
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
}
body {
 line-height: 1;
}
ol,ul {
 list-style: none;
}
blockquote,q {
 quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
 content: '';
 content: none;
}
:focus {
 outline: 0;
}
/* Custom styles */
/* 手動編寫樣式表 */

注意,這個清除樣式并不是萬能的。在一些情況下,它可能會干擾到網頁的正確顯示。因此,務必在使用前仔細檢查樣式表。