博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css Reset
阅读量:5174 次
发布时间:2019-06-13

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

1.css reset

/** 清除内外边距 **/body, h1, h2, h3, h4, h5, h6, hr, p,blockquote, /* structural elements 结构元素 */dl, dt, dd, ul, ol, li, /* list elements 列表元素 */pre, /* text formatting elements 文本格式元素 */form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */th, td, /* table elements 表格元素 */img/* img elements 图片元素 */{border:medium none;margin: 0;padding: 0;}/** 设置默认字体 **/body,button, input, select, textarea {font: 12px/1.5 ‘宋体’,tahoma, Srial, helvetica, sans-serif; }h1, h2, h3, h4, h5, h6 { font-size: 100%; }em{font-style:normal;}/** 重置列表元素 **/ul, ol { list-style: none; }/** 重置超链接元素 **/a { text-decoration: none; color:#333;}a:hover { text-decoration: underline; color:#F40; }/** 重置图片元素 **/img{ border:0px;}/** 重置表格元素 **/table { border-collapse: collapse; border-spacing: 0; }

  

转载于:https://www.cnblogs.com/dsheldon/p/4821503.html

你可能感兴趣的文章
Real-Time Rendering 笔记
查看>>
多路复用
查看>>
【UVA】434-Matty's Blocks
查看>>
hadoop2.2.0+hive-0.10.0完全分布式安装方法
查看>>
使用Reporting Services时遇到的小问题
查看>>
约瑟夫问题
查看>>
Arduino 报错总结
查看>>
树莓派Android Things物联网开发:树莓派GPIO引脚图
查看>>
矩阵快速幂---BestCoder Round#8 1002
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
有关快速幂取模
查看>>
NOI2018垫底记
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>