Archive for the 'CSS Tutorials' Category



CSS Colours-Text - CSS Tutorials

Colours:
CSS brings 16,777,216 colours to your disposal. They can take the form of a name, an rgb (red/green/blue) value or a hex code.
red
Is the same as
rgb(255,0,0)
Which is the same as
rgb(100%,0%,0%)
Which is the same as
#ff0000
Which is the same as
#f00
There are 17 valid predefined colour names. They are aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, [...]

CSS Selectors-Properties-and-Values - CSS Tutorials

Whereas HTML has tags, CSS has ‘selectors‘. Selectors are the names given to styles in internal and external style sheets. In this CSS Beginner Tutorial we will be concentrating on HTML selectors, which are simply the names of HTML tags and are used to change the style of a specific tag.
For each selector there are [...]

What is CSS and how to applying CSS - CSS Tutorials

CSS, or Cascading Styles Sheets, is a way to style HTML. Whereas the HTML is the content, the style sheet is the presentation of that document.
Styles don’t smell or taste anything like HTML, they have a format of ‘property: value‘ and most properties can be applied to most HTML tags.
Applying CSS:
There are three ways to [...]