博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2016/3/1 淘宝 腾讯 网易 css初始化代码 以及最基础的初始化
阅读量:5164 次
发布时间:2019-06-13

本文共 2036 字,大约阅读时间需要 6 分钟。

淘宝官网(http://www.taobao.com/)样式初始化

1 body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin:0; padding:0; }  2  body, button, input, select, textarea { font:12px/1.5tahoma, arial, \5b8b\4f53; }  3 h1, h2, h3, h4, h5, h6{ font-size:100%; }  4  address, cite, dfn, em, var { font-style:normal; }  5  code, kbd, pre, samp { font-family:couriernew, courier, monospace; } small{ font-size:12px; } 6  ul, ol { list-style:none; } 7  a { text-decoration:none; }  8  a:hover { text-decoration:underline; } 9  sup { vertical-align:text-top; }10  sub{ vertical-align:text-bottom; }11  legend { color:#000; }12  fieldset, img { border:0; }13  button, input, select, textarea { font-size:100%; }14  table { border-collapse:collapse; border-spacing:0; }

腾讯QQ官网(http://www.qq.com)样式初始化

1 body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;padding:0} 2  body{font:12px"宋体","Arial Narrow",HELVETICA;background:#fff;-webkit-text-size-adjust:100%;}3  a{color:#2d374b;text-decoration:none} 4  a:hover{color:#cd0200;text-decoration:underline} 5 em{font-style:normal} 6 li{list-style:none} 7  img{border:0;vertical-align:middle} 8  table{border-collapse:collapse;border-spacing:0}9  p{word-wrap:break-word}

网易官网(http://www.163.com/)样式初始化

1 html {overflow-y:scroll;} 2  body {margin:0; padding:29px00; font:12px"\5B8B\4F53",sans-serif;background:#ffffff;}  div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,p{padding:0; margin:0;} 3  table,td,tr,th{font-size:12px;} 4 li{list-style-type:none;} 5  img{vertical-align:top;border:0;} 6 ol,ul {list-style:none;} 7  h1,h2,h3,h4,h5,h6{font-size:12px; font-weight:normal;}  address,cite,code,em,th {font-weight:normal; font-style:normal;}

最简单的 css初始化方式   可以用*代替

1 body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { margin:0; padding:0; }

 

转载于:https://www.cnblogs.com/haodayikeshu/p/5229468.html

你可能感兴趣的文章
vue实战(7):完整开发登录页面(一)
查看>>
Visual Studio自定义模板(二)
查看>>
【Mood-20】滴滤咖啡做法 IT工程师加班必备 更健康的coffee 项目经理加班密鉴
查看>>
读《构建之法-软件工程》第四章有感
查看>>
使用 Printf via SWO/SWV 输出调试信息
查看>>
.net 分布式架构之分布式锁实现(转)
查看>>
吴恩达机器学习笔记 —— 3 线性回归回顾
查看>>
Problem E: Automatic Editing
查看>>
SpringBoot 使用 MyBatis 分页插件 PageHelper 进行分页查询
查看>>
《DSP using MATLAB》Problem 6.17
查看>>
微信公众平台开发实战Java版之如何网页授权获取用户基本信息
查看>>
一周TDD小结
查看>>
sizeof与strlen的用法
查看>>
Linux 下常见目录及其功能
查看>>
开源框架中常用的php函数
查看>>
nginx 的提升多个小文件访问的性能模块
查看>>
set&map
查看>>
集合类总结
查看>>
4.AE中的缩放,书签
查看>>
CVE-2014-6321 && MS14-066 Microsoft Schannel Remote Code Execution Vulnerability Analysis
查看>>