Css PP
Css PP
Css PP
TH {color: red;}.
⚫ The Selector indicates the element to which
the rule is applied.
⚫ The Declaration determines the property values of
a selector.
Understanding Style Rules
⚫ The Property specifies a characteristic, such as
color, font-family, position, and is followed by a
colon (:).
⚫ The Value expresses specification of a property,
such as red for color, arial for font family, 12 pt
for font-size, and is followed by a semicolon (;).
Property Value
P {color: red;}
Three Ways to Insert CSS
External style sheet
Internal style sheet
Inline style
External Style
Sheet
An external style sheet is ideal when the style is applied to many pages. With an external style
sheet, you can change the look of an entire Web site by changing one file. Each page must
link to the style sheet using the <link> tag. The <link> tag goes inside the head section:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
An external style sheet can be written in any text editor. The file should not contain any
html tags. Your style sheet should be saved with a .css extension. An example of a style sheet
file is shown below:
hr {color:red;}
p {margin-left:20px;}
body {background-image:url("images/back40.gif");}
Internal Style Sheet
⚫ Browser compatibility
Browsers have varying levels of compliance with
Style Sheets. This means that some Style Sheet
features are supported and some aren't. To
confuse things more, some browser manufacturers
decide to come up with their own proprietary tags.