6
CSS: Menu Lists
Posted in Blog, CSS Tutorials by Admin
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></li> (
more
6
CSS: Links
Posted in Blog, CSS Tutorials by Admin
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 has a
more
6
CSS: Background Properties
Posted in Blog, CSS Tutorials by Admin
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 in which it
more
6
CSS: Font Properties
Posted in Blog, CSS Tutorials by Admin
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. When you
more
6
CSS: Text Properties
Posted in Blog, CSS Tutorials by Admin
While CSS Font covers most of the traditional ways to format your text, CSS Text allows you to control the spacing, decoration, and alignment of your text.
The style sheet code:
1
2
3
4
5
.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
3
<h1 class="heading">sample
more





Follow Us