博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《精彩绝伦的css》笔记《一》
阅读量:6458 次
发布时间:2019-06-23

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

《精彩绝伦的css》 读书笔记:

1、不同浏览器默认样式不同,就需要在开头重置样式,最简单的方式是:*{ margin:0;padding:0} 通用做法是:meyerweb.com/eric/tools/reset; 这样做的目的是为了让我们在写CSS前尽量所有的浏览器都表现一致

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,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {        margin: 0;        padding: 0;        border: 0;        font-size: 100%;        font: inherit;        vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {        display: block;}body {        line-height: 1;}ol, ul {        list-style: none;}blockquote, q {        quotes: none;}blockquote:before, blockquote:after,q:before, q:after {        content: '';        content: none;}table {        border-collapse: collapse;        border-spacing: 0;}

转载地址:http://haizo.baihongyu.com/

你可能感兴趣的文章
spring3: 表达式5.2 SpEL基础
查看>>
『PyTorch x TensorFlow』第六弹_从最小二乘法看自动求导
查看>>
Git安装遇到的问题fatal: Could not read from remote repository.的解决办法
查看>>
MongoDB在Windows系统下的安装和启动
查看>>
C# 让应用程序只运行一个实例
查看>>
重定向标准流
查看>>
《Node Web开发》((美)David Herron)【摘要 书评 试读】- 京东图书
查看>>
ThinkPHP——重复输出解决办法
查看>>
POJ 2991 Crane
查看>>
在用户控件中动态添加控件及事件
查看>>
垃圾收集趣史
查看>>
Servlet和JSP学习指南
查看>>
c#获取或修改配置文件
查看>>
Wps的ppt里 让图片按顺序出现 就是点击一下 出现一张照片
查看>>
hadoop的WordCount样例
查看>>
OpenCV】透视变换 Perspective Transformation(续)
查看>>
63. Unique Paths II
查看>>
WPF Visifire 图表控件
查看>>
linux下解压命令大全
查看>>
Java——设计模式(装饰模式_IO)
查看>>