css
Table of Contents
Cascading Style Sheets is a markup language with
- basically all label:value pairs
- a large set of builtin properties, including colours/patterns, position styles, common functionalitis like scroll, image auto resize… Sometimes stuff that should be done with actually functions, but very common so css include them and browsers render them.
- a few syntax tweaks like classes/inheritance, class in css - class in html…
- css syntax
- css cheatsheet
- putting space in css
- click shield in css
- centering element in css
- css transition
Backlinks
web technology
Mainly:
css transition
the transition css property is how change in html source will be rendered.
For example, in your javacript you have a button, clicking on it make background change from white to black. without transition property, it changes instantly; with transition: all 1s ease-out;
, it will take 1 second to gradually change from white to black, and the transition will slow down close to the end.
The change in html source could be from javascript, server of whatever langugage or you editing the source from browser inspector
css cheatsheet
here store some simple snippet of css. In time some of them may be too large and should be made their own node.