Category: 1. CSS Basics

  • CSS Syntax

    CSS syntax consists of 3 parts: a selector, a property and a value The selector is an HTML element which you want to style. This could be any tag like <h1>, <p>, etc. Each selector can have one and more properties. The property is the style attribute of an HTML tag. All HTML attributes are converted into CSS properties (color, border, etc.). Each property has its value. The value is…

  • CSS Introduction

    Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language. CSS was developed by the World Wide Web Consortium (W3C). CSS defines how the HTML elements are to be displayed. Styles are normally saved in external .css files. External style sheets allow you to…

  • CSS Basics

    In CSS Basics Chapter, you will get familiar with the Usage of CSS, that is the way to add styles to the HTML document and the right way of writing the syntax. Also, you will get the recap of CSS Texts, Font, Links, Tables, Border, Padding, and Margin. Each of these pages represents the set of properties and their values that will be discussed…

  • Learn CSS

    CSS stands for Cascading Style Sheets. It is a language designed to format the layout of Web pages. It is used to enable the separation of presentation and content, which includes layout, colors, and fonts. They improve the accessibility of content, make it more flexible. CSS enables the specific look of HTML in the browser. CSS has…