什么是 CSS
CSS 就是层叠样式表(Cascading Style Sheets)定义如何显示 HTML 元素。HTML 元素的样式通常存储在层叠样式表中。
为什么要使用 CSS
使用 CSS 就是可以定义 HTML 元素显示的样式,其实是为了解决内容与表现分离的问题。通过 CSS 可以让相同的一个页面在不同的浏览器当中呈现相同的样式。
基础语法
CSS 组成
CSS 规则由两个主要的部分构成:选择器,以及一条或多条声明:
选择器通常是您需要改变样式的 HTML 元素。每条声明由一个属性和一个值组成。属性(property)是希望设置的样式属性(style attribute)。每个属性有一个值。属性和值被冒号分开。
要查看页面中的 CSS 又需要用到浏览器的开发者工具了。还是 elements 面板。在面板右侧展示的就是 CSS。
CSS 选择器
CSS 首先需要通过选择器来确定要定义样式的元素。常用的选择器有下面这几种。
id 选择器:#id {}
class 选择器:.className {}
元素选择器:tag {}
属性选择器:[属性] {}
CSS 创建
<link rel="stylesheet" type="text/css" href="mystyle.css">
复制代码
<style>
hr {color:sienna;}
p {margin-left:20px;}
</style>
复制代码
<p style="color:sienna;margin-left:20px">这是一个段落。</p>
复制代码
常见 CSS 样式
todo 以下每个常用样式,举例说明,不然不知道如何使用(done)
背景
background 简写属性,可以跟下面的所有值
background-color 设置元素的背景颜色
background-image 把图像设置为背景
background-position 设置背景图像的起始位置
background-repeat 设置背景图像是否及如何重复
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
p {
background-color: red;
}
body {
background-image: url('xx.png');
background-repeat: no-repeat;
background-position: right top;
}
</style>
</head>
<body>
<div id="first" class="content">
<p>设置了红色背景</p>
</div>
</body>
</html>
复制代码
文本
color 设置文本颜色
text-align 对齐元素中的文本
text-decoration 向文本添加修饰
text-indent 缩进元素中文本的首行
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
h1 {
color: blue;
text-align: center;
}
p {
color: red;
text-align: left;
text-decoration: underline;
text-indent: 50px;
}
</style>
</head>
<body>
<div id="first" class="content">
<h1>蓝色文字</h1>
<p>
正文第二行正文第二行正文第二行正文第二行正文第二行正文第二行正文第二行正文第二行正文第二行正文第二行
</p>
</div>
</body>
</html>
复制代码
字体
font 在一个声明中设置所有的字体属性
font-family 指定文本的字体系列
font-size 指定文本的字体大小
font-style 指定文本的字体样式
font-weight 指定字体的粗细
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
p {
font-family: 'Times New Roman';
font-size: 200%;
font-style: italic;
font-weight: bold;
}
</style>
</head>
<body>
<div id="first" class="content">
<p>content</p>
</div>
</body>
</html>
复制代码
列表
list-style 把所有用于列表的属性设置在一个声明中
list-style-image 将图像设置为列表项标志
list-style-type 设置列表项标值的类型
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
ul {
list-style-image: url('xx.gif');
list-style-type: circle;
}
</style>
</head>
<body>
<div id="first" class="content">
<ul>
<li>python</li>
<li>java</li>
<li>go</li>
</ul>
</div>
</body>
</html>
复制代码
表格
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
#students {
border-collapse: collapse;
width: 100%;
}
#students td,
#students th {
border: 1px solid red;
padding: 8px;
}
#customers th {
text-align: left;
color: white;
}
</style>
</head>
<body>
<table id="students">
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
</tr>
<tr>
<td>张三</td>
<td>18</td>
<td>男</td>
</tr>
<tr>
<td>李四</td>
<td>19</td>
<td>男</td>
</tr>
</table>
</body>
</html>
复制代码
定位
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>网页标题</title>
<style>
div.static {
position: static;
border: 3px solid green;
}
div.relative {
position: relative;
left: 30px;
border: 3px solid red;
}
</style>
</head>
<body>
<h1>定位</h1>
<p>设置不同的定位方式</p>
<div class="static">这个 div 元素设置正常文档流定位方式</div>
<div class="relative">这个 div 元素设置相对定位</div>
</body>
</html>
复制代码
盒子模型
所有 HTML 元素可以看作盒子,在 CSS 中,"box model"这一术语是用来设计和布局时使用。
CSS 盒模型本质上是一个盒子,封装周围的 HTML 元素,它包括:边距,边框,填充,和实际内容。
盒模型允许我们在其它元素和周围元素边框之间的空间放置元素。
Margin(外边距):清除边框外的区域,外边距是透明的。
Border(边框):围绕在内边距和内容外的边框。
Padding(内边距):清除内容周围的区域,内边距是透明的。
Content(内容):盒子的内容,显示文本和图像
也就是说,当我们要指定一个 CSS 元素的宽度和高度属性时,除了设置内容区域的宽度和高度。还必须添加内边距,边框和边距。
网页布局
网页布局有很多种方式,一般分为以下几个部分:头部区域、菜单导航区域、内容区域、底部区域。
头部区域位于整个网页的顶部,一般用于设置网页的标题或者网页的 logo。菜单导航条包含了一些链接,可以引导用户浏览其他页面。
内容区域一般有三种形式:
1 列:一般用于移动端
2 列:一般用于平板设备
3 列:一般用于 PC 桌面设备
底部区域在网页的最下方,一般包含版权信息和联系方式等
搜索微信公众号:TestingStudio 霍格沃兹的干货都很硬核
评论