真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

html中全局去除默認(rèn)樣式的方法

小編給大家分享一下html中全局去除默認(rèn)樣式的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供麻城網(wǎng)站建設(shè)、麻城做網(wǎng)站、麻城網(wǎng)站設(shè)計(jì)、麻城網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、麻城企業(yè)網(wǎng)站模板建站服務(wù),十年麻城做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

html元素有默認(rèn)樣式,去除的方法:1、全局去除默認(rèn)樣式,代碼為【*{padding:0;margin:0;box-sizing:..}】;2、a標(biāo)簽去除默認(rèn)樣式,代碼為【a{text-decoration: none;color:#3】。

html元素有默認(rèn)樣式,去除的方法:

1、全局去除默認(rèn)樣式

*{padding:0;margin:0;box-sizing: border-box;font-size: 14px;}

2、a標(biāo)簽去除默認(rèn)樣式

 a{text-decoration: none;color:#333;}
 a:hover, a:visited, a:link, a:active {
    color:#333;
    // 設(shè)置使所有a標(biāo)簽的四種狀態(tài)都和本身顏色保持一致,樣式代碼自己寫
}

3、li

ul,ol{list-style: none;}

4、img

img{
  vertical-align:top;
  border:none;
}

5、button

.button{
    border:0;
    background-color:none
    outline:none;
    -webkit-appearance: none;//用于IOS下移除原生樣式
}

6、select

select {
    border: none;
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*在選擇框的最右側(cè)中間顯示小箭頭圖片*/
    background: url("http://ourjs.github.io/static/2015/arrow.png") no-repeat scroll right center transparent;
    padding-right: 14px;
}

7、h2

h2,h3,h4,h5,h6,h7{font-weight:normal;}

8、input,textarea

input,textarea {
    outline: none;
    border: none;
}
textarea {
    resize: none;
    overflow: auto;
}

9、斜體 i

i{font-style: normal;}

10、table

table{border-collapse:collapse;border-spacing:0;}

11、去除input[type=number]加減號(hào)

/*去除input[type=number]加減號(hào)*/
/* 谷歌 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
/* 火狐 */
input{
    -moz-appearance:textfield;
}

以上是“html中全局去除默認(rèn)樣式的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


本文題目:html中全局去除默認(rèn)樣式的方法
鏈接地址:http://weahome.cn/article/popipp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部