blog/docs/code/html/css-info.md

35 lines
957 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: CSS 介绍
date: 2022-01-08 15:25:42
tags: [CSS]
categories: [CSS]
author: Anges黎梦
---
## css概述
为了让网页元素的样式更加丰富,也为了让网页的内容和样式能拆分开,
CSS由此思想而诞生CSS是 Cascading Style Sheets 的首字母缩写,
意思是层叠样式表。有了CSShtml中大部分表现样式的标签就废弃不用了html只
负责文档的结构和内容表现形式完全交给CSShtml文档变得更加简洁。
## css基本语法
css的定义方法是
选择器 { 属性:值; 属性:值; 属性:值;}
选择器是将样式和页面元素关联起来的名称,属性是希望设置的样式属性,
每个属性有一个或多个值。属性和值之间用冒号,一个属性和值与下一个属性和值之间用分号,
最后一个分号可以省略,代码示例:
```css
div{
width:100px; height:100px; background:gold;
}
```