Date

Setting Date column to the current date Just use Now() as you would for a DateTime WHERE based on a date The same as for a DateTime column:

Read More

Is value bool

You can use boolval(), but it doesn’t produce correct results for “True” and “False” values. This is the better method:

Read More

Line Height

line-height: normal Default line-height: number A value that will be multiplied with the current font-size to set the line height (e.g. 1.6) line-height: length A fixed line height in px, pt, cm, etc. line-height: % Percent of the current font size  line-height: inherit Inherits this property from its parent element. Read about inherit

Read More

Absolute positioning

Positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed).If there is no positioned ancestor, it uses the document body, and moves along with page scrolling.Absolute positioned elements are removed from the normal flow, and can overlap elements. Example usage The parent element Child elements

Read More