Jan
6

0


CSS Menu Lists Traditionally, lists came in two flavors: unordered lists (<ul>), and ordered lists (<ol>). With CSS you only need to use <ul>. You can specify the marker using the style attribute. Default spacing does differ among browsers. Use the <ul> tag to begin a list. Place the <li>&
more

Jan
6

0


CSS Links A link has four different states that it can be in. CSS allows you to customize each state. link – this is a link that has not been used, nor is a mouse pointer hovering over it visited – this is a link that has been used before, but has no mouse on it hover – this is a link currently
more

Jan
6

0


CSS Background Properties Before the introduction of styles to HTML, you could only add background images to the whole Web page, a table or table data cell. Now, not only can you easily add backgrounds to almost any element, you also have control on the positioning of the backgrounds, if the background image is to repeat, and even the direction
more

Jan
6

0


Screen Resolution CSS Font Properties define the font family, boldness, size, and the style of a text. You can change the text size, color, style, and more. Font Family Practically every personal computer has a set of fonts installed. These fonts are the default fonts for the operating system. Different operating systems can have very different sets of fonts installed.
more

Jan
6

0


Css Text Properties While CSS Font Properties covers most of the traditional ways to format your text, CSS Text Properties allows you to control the spacing, decoration, and alignment of your text. The style sheet code: 1 2 3 .heading { text-align: center; text-transform: uppercase; color: #8493cb; } .paragraph { text-indent: 12px; text-align: justify; line-height: 16px; } a { text-decoration: none; color: #990000; } The HTML code: 1 2 <h1 class=&
more