CSS

What is CSS

About CSS

About CSS : Cascading Style Sheets, fondly referred to as Css is a simple design language intended to simplify the process of making web pages presentable. CS S is used along with HTML and JavaScript in most websites to create user interfaces for web applications and user interfaces for many mobile applications. CS S is …

About CSS Read More »

Syntax in CSS

CSS Syntax

CSS Syntax : A CSS comprises of style rules that are interpreted by the browser and then applied to the corresponding elements in your document. A style rule is made of three parts Selector A selector is an HTML tag at which a style will be applied. This could be any tag like <h1> or …

CSS Syntax Read More »

Selector in CSS

CSS Selectors

CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule set. There are several different types of selectors in CSS. Class Selector Descendant Selectors Group Selector Type Selector Id Selector

Comments in CSS

CSS Comments

Comments in CSS are used to explain your code, and may help you when you edit the source code later. Comments are ignored by browsers. Comments in CSS are single or multiple lines statement and written within /*…………*/.

Colors in CSS

CSS Color

The CSS color property specifies the color of the text. One method of specifying the color of the text is using a color name: like red, green, blue, etc. We can define the color of an element by using the following ways-
RGB format
Hexadecimal notation
HSL
HSLA
Built-in color

Fonts in CSS

CSS Fonts

CSS Fonts property is used to control the look of texts. By the use of CSS font property you can change the text size, color, style and more. You have already studied how to make text bold or underlined. Here, you will also know how to resize your font using percentage. These are some important …

CSS Fonts Read More »

Text in CSS

CSS Text

In this you Learn how to manipulate CSS Text using CSS properties. 1. color: property is used to set the color of a text.2. direction: property is used to set the text direction.3. letter-spacing: The letter-spacing property specifies the space between characters in a text.4. word-spacing: The word-spacing property specifies the space between words in …

CSS Text Read More »