Most elements are added / removed from the UI using a change in the display
property.
For example if you want to make an HTML element appear you can add display: block;
. Then you can remove it with display: none;
. This is very simple and widely used.
It would be nice to have a simple way to make the element fade in / fade out.
Example: transition: display 2s;