赞
踩
样式都写在<style>里,<style>一般写到<head>上方
样式选择器,属性名,属性值关键字全部使用小写字母,特殊情况除外
属性值前面,冒号后面,保留一个空格
选择器(标签)和大括号中间保留空格
标签名 {样式属性}
h3 {
color: pink;
font-size: 20px;
}
.类名 {样式属性}
一个标签可以有不止一个类
.class_selector {
color: red;
}
#id {样式属性}
#multiple_class_selector03 {
font-weight: 1000;
}
*{样式属性}
(*选择所有标签)
* {
font-style: italic;
}
谷歌浏览器默认字体大小是16px
由于不同浏览器打开的默认字体大小不同,所以建议人为自己设置
可以给body设置整个页面的文字的大小
#div01 {
font-size: 20px;
}
实际开发时,更推荐用数字来表示粗细
普通粗细
加粗
400 等同于 normal,而 700 等同于 bold,由细到粗的字体粗细
#div04{
font-weight: normal;
}
#div05{
font-weight: bold;
}
#div06{
font-weight: 100;
}
#div07{
font-weight: 500;
}
#div08{
font-weight: 1000;
}
普通字体样式
斜体字体样式
#div09 {
font-style: normal;
}
#div10 {
font-style: italic;
}
能有效的减少代码量,简化代码
选择器 {
font:
[font-style]
[font-variant]
[font-weight]
font-size[/line-height]
font-family;
}
#div11 {
font:
italic
300
30px
normal;
}
表示方法分为三种,分别是:
#div01 {
color: #0000ff;
}
文本的位置对齐分布
向左靠拢
向右靠拢
水平居中
#div02 {
text-align: left;
}
#div03 {
text-align: right;
}
#div04 {
text-align: center;
}
默认文本,没有修饰
下划线
上划线
删除线
#div05 {
text-decoration: none;
}
#div06 {
text-decoration:underline;
}
#div07 {
text-decoration:overline;
}
#div08 {
text-decoration:line-through;
}
文本前的空档
em 是一个相对单位,就是当前元素(font-size) 1 个文字的大小, 如果当前元素没有设置大小,则会按照父元素的 1 个文字大小
#div09 {
text-indent: 20px;
}
#div10 {
text-indent: 2em;
}
行高的文本分为三个部分: 上间距 文本高度 下间距
行间距=上间距+下间距
行高=行间距+文本高度
.line_height_div {
line-height: 100px;
}
直接写在html中的所作用的标签里面的样式
<div style="color:blue">行内样式表</div>
写在html中的<style>中的样式
<head>
<style>
#div01 {
color: blue;
}
</style>
</head>
<body>
<div id="div01">内部样式表</div>
</body>
写在css中的样式
<head>
<link rel="stylesheet" href="./外部样式表.css">
</head>
<body>
<div id="div02">外部样式表</div>
</body>
外部样式表.css
#div02 {
color: blue;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。