> For the complete documentation index, see [llms.txt](https://docs.webmix.cc/css-animation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.webmix.cc/css-animation/zhuan-chang-xiao-guo-transition/4.6-zong-jie-transition.md).

# 4.6 transition 縮寫

## 縮寫

```css
transition: all 0s ease 0s;
```

依序分別是以下順序：

* transition-property
* transition-duration
* transition-timing-function
* transition-delay

如果要套用複數個轉場效果，就以半形逗號做分隔，例：

```css
transition: width 1s ease 0s, height 1s ease 0s;
```
