【CSS】入门基础

发布于:2025-04-03 ⋅ 阅读:(19) ⋅ 点赞:(0)

在这里插入图片描述

个人主页:Guiat
归属专栏:HTML CSS JavaScript

在这里插入图片描述

正文

1. CSS 简介

CSS(层叠样式表)是一种用于描述HTML或XML文档表现形式的样式表语言。CSS控制网页的布局、颜色、字体等视觉效果,使网页内容与表现分离。

1.1 CSS的作用

  • 控制网页布局
  • 定义文本样式
  • 实现动画效果
  • 适应不同设备显示

1.2 CSS的引入方式

1.2.1 内联样式

直接在HTML标签中使用style属性:

<p style="color: red; font-size: 16px;">这是红色文本</p>

1.2.2 内部样式表

在HTML文档的<head>部分使用<style>标签:

<head>
  <style>
    p {
      color: blue;
      font-size: 18px;
    }
  </style>
</head>

1.2.3 外部样式表(推荐)

创建独立的CSS文件,通过<link>标签引入:

<head>
  <link rel="stylesheet" href="styles.css">
</head>

2. CSS 选择器

选择器用于定位需要应用样式的HTML元素。

2.1 基本选择器

2.1.1 元素选择器

p {
  color: blue;
}

2.1.2 类选择器

.highlight {
  background-color: yellow;
}

2.1.3 ID选择器

#header {
  font-size: 24px;
}

2.2 组合选择器

2.2.1 后代选择器

div p {
  margin-left: 20px;
}

2.2.2 子元素选择器

div > p {
  font-weight: bold;
}

2.2.3 相邻兄弟选择器

h1 + p {
  margin-top: 0;
}

2.3 伪类和伪元素

2.3.1 伪类

a:hover {
  text-decoration: underline;
}

li:first-child {
  font-weight: bold;
}

2.3.2 伪元素

p::first-line {
  font-variant: small-caps;
}

p::before {
  content: "▶ ";
}

3. CSS 盒模型

每个HTML元素都被视为一个矩形盒子,由内容、内边距、边框和外边距组成。

3.1 盒模型组成

CSS盒模型

  • 内容区域(Content): 显示文本、图像等内容的区域
  • 内边距(Padding): 内容与边框之间的空间
  • 边框(Border): 围绕内容和内边距的线条
  • 外边距(Margin): 元素与其他元素之间的空间

3.2 盒模型属性

div {
  /* 内容区域 */
  width: 300px;
  height: 200px;
  
  /* 内边距 */
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  /* 简写 */
  padding: 10px 20px 10px 20px; /* 上 右 下 左 */
  
  /* 边框 */
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  /* 简写 */
  border: 1px solid #000;
  
  /* 外边距 */
  margin: 10px 15px 20px 15px; /* 上 右 下 左 */
}

3.3 盒模型计算

默认情况下,width和height只设置内容区域的大小。实际元素的总宽度计算:

总宽度 = width + padding-left + padding-right + border-left + border-right + margin-left + margin-right

3.4 box-sizing属性

.box {
  box-sizing: content-box; /* 默认值 */
}

.box-border {
  box-sizing: border-box; /* width和height包含padding和border */
}

4. CSS 布局

4.1 定位(Position)

4.1.1 静态定位(static)

div {
  position: static; /* 默认值 */
}

4.1.2 相对定位(relative)

.relative {
  position: relative;
  top: 20px;
  left: 30px;
}

4.1.3 绝对定位(absolute)

.absolute {
  position: absolute;
  top: 50px;
  right: 10px;
}

4.1.4 固定定位(fixed)

.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

4.1.5 粘性定位(sticky)

.sticky {
  position: sticky;
  top: 0;
}

4.2 浮动(Float)

.float-left {
  float: left;
  width: 50%;
}

.float-right {
  float: right;
  width: 50%;
}

.clear {
  clear: both;
}

4.3 Flexbox布局

.container {
  display: flex;
  flex-direction: row; /* row, column, row-reverse, column-reverse */
  justify-content: space-between; /* flex-start, flex-end, center, space-around, space-between */
  align-items: center; /* flex-start, flex-end, center, stretch, baseline */
  flex-wrap: wrap; /* nowrap, wrap, wrap-reverse */
}

.item {
  flex: 1; /* 可以增长和收缩 */
}

4.4 Grid布局

.grid-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* 三列网格,中间列宽度是两边的两倍 */
  grid-template-rows: 100px auto 100px; /* 三行网格,中间行高度自适应 */
  gap: 10px; /* 网格间距 */
}

.grid-item {
  grid-column: 1 / 3; /* 从第1列线到第3列线 */
  grid-row: 2 / 3; /* 从第2行线到第3行线 */
}

5. CSS 颜色与背景

5.1 颜色表示方法

p {
  /* 颜色名称 */
  color: red;
  
  /* 十六进制 */
  color: #ff0000;
  color: #f00; /* 简写 */
  
  /* RGB */
  color: rgb(255, 0, 0);
  
  /* RGBA (带透明度) */
  color: rgba(255, 0, 0, 0.5);
  
  /* HSL (色相、饱和度、亮度) */
  color: hsl(0, 100%, 50%);
  
  /* HSLA (带透明度) */
  color: hsla(0, 100%, 50%, 0.5);
}

5.2 背景属性

div {
  /* 背景颜色 */
  background-color: #f0f0f0;
  
  /* 背景图片 */
  background-image: url('image.jpg');
  
  /* 背景重复 */
  background-repeat: no-repeat; /* repeat, repeat-x, repeat-y */
  
  /* 背景位置 */
  background-position: center center;
  
  /* 背景大小 */
  background-size: cover; /* contain, 100px 200px */
  
  /* 背景附着 */
  background-attachment: fixed; /* scroll, local */
  
  /* 简写 */
  background: #f0f0f0 url('image.jpg') no-repeat center center / cover;
}

6. CSS 文本样式

6.1 字体属性

p {
  /* 字体系列 */
  font-family: Arial, Helvetica, sans-serif;
  
  /* 字体大小 */
  font-size: 16px; /* 也可以用em, rem, %, vw等单位 */
  
  /* 字体粗细 */
  font-weight: bold; /* normal, 100-900 */
  
  /* 字体样式 */
  font-style: italic; /* normal, oblique */
  
  /* 简写 */
  font: italic bold 16px/1.5 Arial, sans-serif; /* 样式 粗细 大小/行高 字体系列 */
}

6.2 文本属性

p {
  /* 文本颜色 */
  color: #333;
  
  /* 文本对齐 */
  text-align: center; /* left, right, justify */
  
  /* 行高 */
  line-height: 1.5;
  
  /* 字母间距 */
  letter-spacing: 1px;
  
  /* 单词间距 */
  word-spacing: 2px;
  
  /* 文本装饰 */
  text-decoration: underline; /* none, overline, line-through */
  
  /* 文本转换 */
  text-transform: uppercase; /* lowercase, capitalize, none */
  
  /* 文本缩进 */
  text-indent: 2em;
  
  /* 文本阴影 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

7. CSS 响应式设计

7.1 媒体查询

/* 基本样式 - 适用于所有设备 */
body {
  font-size: 16px;
}

/* 小屏幕设备 (手机) */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

/* 中等屏幕设备 (平板) */
@media (min-width: 577px) and (max-width: 992px) {
  body {
    font-size: 15px;
  }
}

/* 大屏幕设备 (桌面) */
@media (min-width: 993px) {
  body {
    font-size: 16px;
  }
}

/* 打印样式 */
@media print {
  body {
    font-size: 12pt;
    color: black;
  }
}

7.2 视口单位

.hero {
  height: 100vh; /* 视口高度的100% */
  width: 100vw; /* 视口宽度的100% */
}

.text {
  font-size: 5vmin; /* 视口较小尺寸的5% */
}

7.3 弹性图片

img {
  max-width: 100%;
  height: auto;
}

8. CSS 过渡与动画

8.1 过渡(Transition)

button {
  background-color: blue;
  color: white;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

button:hover {
  background-color: darkblue;
  transform: scale(1.1);
}

8.2 动画(Animation)

/* 定义关键帧 */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 应用动画 */
.bouncing-ball {
  width: 50px;
  height: 50px;
  background-color: red;
  border-radius: 50%;
  animation-name: bounce;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  
  /* 简写 */
  animation: bounce 1s ease-in-out infinite;
}

9. CSS 变量(自定义属性)

:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --font-size-base: 16px;
  --spacing-unit: 8px;
}

.button {
  background-color: var(--primary-color);
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
  font-size: var(--font-size-base);
}

.alert {
  border: 1px solid var(--secondary-color);
  margin: var(--spacing-unit);
}

/* 媒体查询中修改变量 */
@media (max-width: 768px) {
  :root {
    --font-size-base: 14px;
    --spacing-unit: 6px;
  }
}

10. CSS 最佳实践

10.1 CSS 命名规范

10.1.1 BEM命名法

BEM代表块(Block)、元素(Element)、修饰符(Modifier)

/* 块 */
.card {
  background: white;
  border-radius: 4px;
}

/* 元素 */
.card__title {
  font-size: 18px;
}

.card__image {
  width: 100%;
}

/* 修饰符 */
.card--featured {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

10.2 CSS 性能优化

  • 避免使用!important
  • 减少选择器嵌套层级
  • 使用简写属性
  • 避免使用通配符选择器*
  • 合并相似的规则
  • 压缩CSS文件
/* 不推荐 */
.container .article .article-title {
  color: #333;
}

/* 推荐 */
.article-title {
  color: #333;
}

10.3 CSS 组织结构

/* 1. 重置/标准化 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. 变量 */
:root {
  --primary-color: #3498db;
}

/* 3. 基础样式 */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* 4. 布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 5. 组件 */
.button {
  display: inline-block;
  padding: 8px 16px;
}

/* 6. 页面特定样式 */
.home-hero {
  background-image: url('hero.jpg');
}

/* 7. 工具类 */
.text-center {
  text-align: center;
}

结语
感谢您的阅读!期待您的一键三连!欢迎指正!

在这里插入图片描述