网站H1 H2标签字体大小在那里修改

以下是我的style.css 表我看不懂,怎么修改,最好帮我解析一下我会加分的
我主要是分不清哪里到那里是控制那个区的,加我QQ185834296 我会传CSS给你看的,www.nutiepeng.com
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p, caption {
margin : 0;
padding : 0;
}
body {
font : 12px/180% 'Microsoft YaHei';
color : #413c36;
background : #ffffff url(images/bodybg.gif) repeat-x 0% 0%;
}
ul, ol, li, em, dl, dt, dd, p, cite {
list-style : none;
font-style : normal;
}
h1, h2, h3, h4, h5, h6 {
font-weight : 100;
font-size : 12px;
}

h1、h2 标签可以在网站的管理后台或者站点源文件那里修改。
HTML 文档中包含有各种级别的标题,各种级别的标题是由<h1>到<h6>元素来定义的。其中,<h1>代表最高级别的标题,即字体最大,依次递减,<h6>级别最低,字体最小。
编程语法:
<h1>一级标题</h1>
<h2>二级标题</h2>
<h3>三级标题</h3>
<h4>四级标题</h4>
<h5>五级标题</h5>
<h6>六级标题</h6>
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-04-20
h1, h2, h3, h4, h5, h6 {
font-weight : 100;
font-size : 12px;
}
你已经设置了,从你的设置上可以看出所有的标题标签都是12号字,你可以单独设置h1,h2;
h3, h4, h5, h6 {
font-weight : 100;
font-size : 12px;
}
h1{
font-size:16px;
}
h2{
font-size:14px;
}追问

不知道怎么回事设置了不管用

追答

你单独设置哦,亲,要把原先的替换成
h3, h4, h5, h6 {
font-weight : 100;
font-size : 12px;
}
h1{
font-size:16px;
}
h2{
font-size:14px;
}

本回答被提问者采纳
第2个回答  2013-04-20
你单独写一下h1,h2的字体样式,可以这样写
h1,h2{
font-size:16px;}
这个大小自己根据自己需要来调就可以。
第3个回答  2015-09-30
<h1>表示网页中最大的标题</h1>
<h2>次之</h2>

可以加上行内样式,控制字体的大小和颜色。
第4个回答  2013-04-20
h1, h2, h3, h4, h5, h6 {
font-weight : 100;
font-size : 12px;
}

这句可以看出h1到6的字号都是12px
可以在下面单独设置h1,h2的文字大小
相似回答