CSS background image example
The background-image property sets the background image of an element.
CSS background-color
The background-color property sets the background color of an element. The color is drawn behind any background images. Example – background-color
wget handy commands
Here are some handy wget commands wget with username and password In case a url requires simple web auth, one can use the following wget read more
CSS flexbox – align div vertically and horizontally in center
CSS flexbox can be used to align a div in center of container div both vertically and horizontally. Use the flexbox with following properties: justify-content: read more
jQuery – text input field – change keyup and paste events
jQuery can be used to handle these events on an input text field. change (when text input field changes and loses focus) $(‘input#field1’).on(‘change’, function(evt) { read more
CSS flexbox – display flex and inline-flex
CSS property display can be used to define flex box container. It can have two values: display: flex; display: inline-flex; Syntax: Example – display:flex and read more
CSS flex – shorthand for flex-grow, flex-shrink and flex-basis
CSS flex is the shorthand property for flex-grow, flex-shrink and flex-basis. flex-shrink and flex-basis are optional. Its default value is 1 0 auto. Syntax: Example read more
CSS flex-basis
CSS flex-basis define the initial base size of the flex-item. Note that the final size of flex-item will depend upon flex-grow and flex-shrink values. Syntax: read more
CSS align-self – override align-items for flex-item
CSS align-self property can be used to override align-items value (defined at flexbox level) for a specific flex-item. Syntax: Example – align-self This example uses read more
CSS flex-shrink – shrink flex item if needed
CSS flex-shrink property lets a flex item to shrink if needed. Its initial value is 1. That mean by default flex items will shrink. It read more