Recent

Using Shorthand Properties in CSS

CSS supports shorthand properties for margin, border properties, etc. For example: margin-top: 1.5em; margin-right: 1em; margin-bottom: 1.5em; margin-left: 1em; could be written in shorthand format as margin: 1.5em 1em 1.5em

Capitalize the First Letter of Every Word with CSS

Use the text-transform property with ‘capitalize’ value to capitalize the first letter of the words in an element., For example: div { text-transform: capitalize; }this is a statement that requires

Build HTML Tables with Tableizer

Tableizer is an external app that is great for building HTML tables out of data, using existing Calc or Excel spreadsheet templates. You only need paste your cells into the

Using the Small Tag in HTML5

The element tag was formerly used to create subheadings, such as a logo. Now, the element has been redefined, more suitably, and now indicates small print. It is useful as

Explore 3 Popular Myths About Garbage Collection

There are 3 highly popular myths about garbage collection. Let’s review those myths and the actual truth behind them. Myth #1: Minor GCs don’t pause the application There are different

Escape Characters with the “@” Symbol in C#

Use the “@” symbol to prefix a string that has characters. You do not have to escape the characters in the string. For example, instead of: Var filePathString = “C:mydocsshareaudit.docx”;

Conditional Catch Blocks in C#

We can now have conditional catch blocks in C#. The catch block will execute only if the condition evaluates to true. Please see below for an example. catch (Exception ex){