CSS手機端代碼清空樣式
*{ margin:0; padding:0; border:0; box-sizing:border-box; font-size:100%; font-family:inherit; vertical-align:baseline; } html,body{ height:100%; } body{ font-family:'Helvetica Neue', Arial, sans-serif; font-size:16px; line-height:1.5; color:#333; background-color:#fff; } a{ color:#007aff; text-decoration:none; } a:hover{ text-decoration:underline; } section{ display:block; }
以上代碼是一段使用純CSS的代碼,可以清空大部分Web頁面自帶的默認樣式,兼容移動端和桌面端,讓你可以在空頁面上開始你的設(shè)計,也適合搭建一些輕量級網(wǎng)站。