91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

web前端入門到實戰:css樣式初始化

發布時間:2020-07-16 14:35:13 來源:網絡 閱讀:248 作者:前端向南 欄目:web開發

為了消除各瀏覽器對css默認的設置,保持網頁在各瀏覽器中的外觀保持一致,初始化css就顯得非常必要了!很多時候出現的樣式不兼容問題,都可以通過css初始化代碼來解決。

1.最耗資源的,最簡單的

* { padding: 0; margin: 0; border: 0; } 

2.選擇性初始化舉例(綜合)

body,div,dl,dt,dd,ul,ol,li,h2,h3,h4,h5,h6,h7,pre,code,legend,button
form,fieldset,input,textarea,p,blockquote,th,td {   
  padding: 0;   
  margin: 0;   
}
/* 酌情修改 */
body {
    background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋體","Arial Narrow";
}

/* 短引用的內容可取值:''或"" */
q:before,q:after {content:”;}  

/* 縮寫,圖片等無邊框 */
fieldset,img,abbr,acronym {border: 0 none;}
abbr,acronym {font-variant: normal;}
legend {color:#000;}

/* 清除特殊標記的字體和字號 */
address,caption,cite,code,dfn,em,strong,th,var {   
  font-weight: normal;   
  font-style: normal;   
}

/* 上下標 */
sup {vertical-align: text-top;}
sub {vertical-align: text-bottom;}

/* 設置表格的邊框被合并為一個單一的邊框, 指定分隔邊框模型中單元格邊界之間的距離為0*/
table {   
  border-collapse: collapse;   
  border-spacing: 0;   
}   

/* 表格標題及內容居左顯示 */
caption,th {text-align: left;}
input,img,select {vertical-align:middle;}

/* 清除列表樣式 */
ol,ul {list-style: none;}  

/* 輸入控件字體 */
input,button,textarea,select,optgroup,option {
    font-family:inherit;
    font-size:inherit;
    font-style:inherit;
    font-weight:inherit;
}

/* 標題元素樣式清除 */ 
h2,h3,h4,h5,h6,h7 {   
  font-weight: normal;   
  font-size: 100%;   
}   

/* 鏈接樣式,顏色可酌情修改 */
del,ins,a {text-decoration:none;}
a:link {color:#009;}
a:visited {color:#800080;}
a:hover,a:active,a:focus {color:#c00; text-decoration:underline;} 

/* 鼠標樣式 */
input[type="submit"] {cursor: pointer;}
button {cursor: pointer;}
input::-moz-focus-inner { border: 0; padding: 0;}

.clear {clear:both;}
web前端開發學習Q-q-u-n: 731771211,分享學習的方法和需要注意的小細節,不停更新最新的教程和學習方法(詳細的前端項目實戰教學視頻,PDF)

3.sina的

/* 全局樣式 */
body,ul,ol,li,p,h2,h3,h4,h5,h6,h7,form,fieldset,table,td,img,div{
    margin:0;padding:0;border:0;
}
body{
    background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋體","Arial Narrow";
}
ul,ol{
    list-style-type:none;
}
select,input,img,select{
    vertical-align:middle;
}
a{text-decoration:none;}
a:link{color:#009;}
a:visited{color:#800080;}
a:hover,a:active,a:focus{color:#c00;text-decoration:underline;}

4.yahoo的

html {
    background: none repeat scroll 0 0 #FFFFFF;
    color: #000000;
}
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 {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset, img {
    border: 0 none;
}
address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}
li {
    list-style: none outside none;
}
caption, th {
    text-align: left;
}
h2, h3, h4, h5, h6, h7 {
    font-size: 100%;
    font-weight: normal;
}
q:before, q:after {
    content: "";
}
abbr, acronym {
    border: 0 none;
    font-variant: normal;
}
sup {
    vertical-align: text-top;
}
sub {
    vertical-align: text-bottom;
}
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
input, textarea, select {
}
legend {
    color: #000000;
}
body {
    font: 13px/1.231 arial,helvetica,clean,sans-serif;
}
select, input, button, textarea {
    font: 99% arial,helvetica,clean,sans-serif;
}
table {
    font-size: inherit;
}
pre, code, kbd, samp, tt {
    font-family: monospace;
    line-height: 100%;
}
a {
    text-decoration: none;
}
a:hover, a:focus {
    text-decoration: underline;
}
strong {
    font-weight: bold;
}
input[type="submit"] {
    cursor: pointer;
}
button {
    cursor: pointer;
}

5.博客園的

/*version: 2.7.0*/
html,body{color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h2,h3,h4,h5,h6,h7,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{
    margin:0;padding:0;
}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var,optgroup{
    font-style:inherit;font-weight:inherit;
}
del,ins{text-decoration:none;}
li{list-style:none;}
caption,th{text-align:left;}
h2,h3,h4,h5,h6,h7{    font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:baseline;}
sub{vertical-align:baseline;}
legend{color:#000;}
input,button,textarea,select,optgroup,option{
    font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;
}
input,button,textarea,select{*font-size:100%;}
.clear{clear:both;}
input::-moz-focus-inner{ border: 0;padding: 0;}

/*added*/
input[type=button],input[type=submit] {-webkit-appearance: button;}

normalize:

normalize.css最大特點:保留有用的瀏覽器默認樣式,而不是一概將它們“抹殺”,對瀏覽器很友好

vue框架中如何使用

NPM
npm install --save normalize.css

mianimport 'normalize.css'  如果報錯
npm install css-loader style-loader
web前端開發學習Q-q-u-n: 731771211,分享學習的方法和需要注意的小細節,不停更新最新的教程和學習方法(詳細的前端項目實戰教學視頻,PDF)
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新泰市| 新巴尔虎右旗| 榆林市| 玉门市| 电白县| 临沭县| 民和| 克拉玛依市| 鄯善县| 连江县| 常德市| 金秀| 晋城| 青冈县| 江山市| 高邮市| 高密市| 永善县| 蓝田县| 三台县| 靖边县| 遂平县| 吉林省| 桃园市| 北碚区| 德兴市| 平泉县| 莎车县| 井冈山市| 临朐县| 建湖县| 宣化县| 汕头市| 华安县| 永寿县| 彩票| 文昌市| 武邑县| 洮南市| 静宁县| 清徐县|