HTML元素的默认CSS设置介绍

简介:
html, address, 
blockquote, 
body, dd, div, 
dl, dt, fieldset, form, 
frame, frameset, 
h1, h2, h3, h4, 
h5, h6, noframes, 
ol, p, ul, center, 
dir, hr, menu, pre { display: block } 
li { display: list-item } 
head { display: none } 
table { display: table } 
tr { display: table-row } 
thead { display: table-header-group } 
tbody { display: table-row-group } 
tfoot { display: table-footer-group } 
col { display: table-column } 
colgroup { display: table-column-group } 
td, th { display: table-cell; } 
caption { display: table-caption } 
th { font-weight: bolder; text-align: center } 
caption { text-align: center } 
body { margin: 8px; line-height: 1.12 } 
h1 { font-size: 2em; margin: .67em 0 } 
h2 { font-size: 1.5em; margin: .75em 0 } 
h3 { font-size: 1.17em; margin: .83em 0 } 
h4, p, 
blockquote, ul, 
fieldset, form, 
ol, dl, dir, 
menu { margin: 1.12em 0 } 
h5 { font-size: .83em; margin: 1.5em 0 } 
h6 { font-size: .75em; margin: 1.67em 0 } 
h1, h2, h3, h4, 
h5, h6, b,strong { font-weight: bolder } 
blockquote { margin-left: 40px; margin-right: 40px } 
i, cite, em, 
var, address { font-style: italic } 
pre, tt, code, 
kbd, samp { font-family: monospace } 
pre { white-space: pre } 
button, textarea, 
input, object, 
select { display:inline-block; } 
big { font-size: 1.17em } 
small, sub, sup { font-size: .83em } 
sub { vertical-align: sub } 
sup { vertical-align: super } 
table { border-spacing: 2px; } 
thead, tbody, 
tfoot { vertical-align: middle } 
td, th { vertical-align: inherit } 
s, strike, del { text-decoration: line-through } 
hr { border: 1px inset } 
ol, ul, dir, 
menu, dd { margin-left: 40px } 
ol { list-style-type: decimal } 
ol ul, ul ol, 
ul ul, ol ol { margin-top: 0; margin-bottom: 0 } 
u, ins { text-decoration: underline } 
br:before { content: "/A" } 
:before, :after { white-space: pre-line } 
center { text-align: center } 
abbr, acronym { font-variant: small-caps; letter-spacing: 0.1em } 
:link, :visited { text-decoration: underline } 
:focus { outline: thin dotted invert } 
/* Begin bidirectionality settings (do not change) */ 
BDO[DIR="ltr"] { direction: ltr; unicode-bidi: bidi-override } 
BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override } 
*[DIR="ltr"] { direction: ltr; unicode-bidi: embed } 
*[DIR="rtl"] { direction: rtl; unicode-bidi: embed } 
@media print { 
h1 { page-break-before: always } 
h1, h2, h3, 
h4, h5, h6 { page-break-after: avoid } 
ul, ol, dl { page-break-before: avoid } 

}

本文转自敏捷的水博客园博客,原文链接http://www.cnblogs.com/cnblogsfans/articles/1083458.html如需转载请自行联系原作者


王德水

相关文章
|
5天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]细节与使用经验
本文总结了前端开发中的一些重要细节和技巧,包括CSS选择器、定位、层级、全局属性、滚轮控制、轮播等。作者以纯文字形式记录,便于读者使用<kbd>Ctrl + F</kbd>快速查找相关内容。文章还提供了示例代码,帮助读者更好地理解和应用这些知识点。
22 1
[HTML、CSS]细节与使用经验
|
6天前
|
移动开发 前端开发 JavaScript
[HTML、CSS]知识点
本文涵盖前端知识点扩展、HTML标签(如video、input、canvas)、datalist和details标签的使用方法,以及CSS布局技巧(如margin、overflow: hidden和动态height)。文章旨在分享作者的学习经验和实用技巧。
17 1
[HTML、CSS]知识点
|
1天前
|
移动开发 JavaScript 前端开发
html table+css实现可编辑表格的示例代码
html table+css实现可编辑表格的示例代码
|
2天前
|
前端开发 JavaScript 安全
HTML+CSS+JS密码灯登录表单
通过结合使用HTML、CSS和JavaScript,我们创建了一个带有密码强度指示器的登录表单。这不仅提高了用户体验,还帮助用户创建更安全的密码。希望本文的详细介绍和代码示例能帮助您在实际项目中实现类似功能,提升网站的安全性和用户友好性。
8 3
|
7天前
|
前端开发 JavaScript UED
|
13天前
|
JSON 移动开发 数据格式
html5+css3+js移动端带歌词音乐播放器代码
音乐播放器特效是一款html5+css3+js制作的手机移动端音乐播放器代码,带歌词显示。包括支持单曲循环,歌词显示,歌曲搜索,音量控制,列表循环等功能。利用json获取音乐歌单和歌词,基于html5 audio属性手机音乐播放器代码。
63 6
|
12天前
|
前端开发
HTML 样式- CSS3
内部样式表适用于单个文件的特别样式,通过&lt;head&gt;部分的&lt;style&gt;标签定义;外部样式表适用于多个页面,通过&lt;link&gt;标签引用外部CSS文件;&lt;style&gt;定义样式,&lt;link&gt;引用资源;已弃用的标签有&lt;font&gt;、&lt;center&gt;、&lt;strike&gt;,属性有color和bgcolor。
|
12天前
HTML 样式- CSS2
HTML样式实例展示了如何使用`font-family`、`color`和`font-size`属性来定义字体样式,以及使用`text-align`属性来设置文本的对齐方式。示例包括标题和段落的样式设置。
|
12天前
|
前端开发
HTML 样式- CSS1
CSS (层叠样式表) 用于为 HTML 元素添加样式,包括颜色、文本、盒子模型等。CSS 可以通过内联样式、内部样式表或外部引用的方式添加到 HTML 中。推荐使用外部引用方式。本教程将介绍如何使用 CSS 为 HTML 添加样式,并提供实例演示。