Sunday 06th of July 2008 01:22:59 PM
MENU
#left {
position: absolute;
left: 0px;
width: 190px;
color: #564b47;
margin: 0px;
padding: 0px;
}
padding: 0px;
}
This column inherited it's background color from the body definition.
Padding is defined through p.
MENU
#right {
position: absolute;
right: 0px;
width: 190px;
color: #564b47;
margin: 0px;
padding: 0px;
}


CONTENT
3 columns / menu fixed, content and head dynamic.
3 columns layout grid. The navigation columns are fixed in their widths, the content column is dynamic
and adjusts itself to the browser window.
The head box is dynamic in its height. It adjusts to the height of the logo.
more nice and free css templates
html {
padding:0px;
margin:0px;
}
body {
background-color: #e1ddd9;
font-size: 12px;
font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
color:#564b47;
padding:0px;
margin:0px;
}
#content {
margin: 0px 190px 0px 190px;
border-left: 2px solid #564b47;
border-right: 2px solid #564b47;
padding: 0px;
background-color: #ffffff;
}
LINK tag. That way, the web browser knows that thestyle sheet is a CSS style sheet, a fact that will determine how thebrowser deals with the data it imports. After all, there may be otherstyle languages in the future, so it will be important to say whichlanguage you're using.Next we find the HREF attribute. The value of this attribute is theURL of your style sheet. This URL can beeither absolute or relative, depending on what works for you. In ouris none, which prevents them from existing. If a
border has no style, then it may as well not exist, so it
doesn't. The absence of a border style also resets the width,
but we'll get to that in a little while.
Finally, the default border color is the foreground color of the
element itself. If no color has been declared for the border, then it
will be the same color as the text of the element. If, on the other
hand, an element has no text -- let's say a table which
contains only images -- then thanks to the fact that color is
Just in case you're unfamiliar with the concept of a"bullet," it's the little decoration to the side ofa list item, as depicted in Figure 7-79.
Figure 7-79. Bullets
In an unordered list, these will be little symbols, but in an orderedlist, the bullet could be a letter or number.
7.7.1. Types of Lists
6.1.1. Foreground Colors
The
easiest way to set the foreground color of an element is with the
property color.
color
This property
accepts as a value any valid color, as discussed in Chapter 3, "Units and Values", such as #FFCC00 or
By being language independent, XML bypasses the requirement to have a standard binary encoding or storage format. Language independence also fosters immense interoperability amongst heterogeneous systems. It is also good for future compatilbilty. For example, if in the future a product needs to be changed in order to deal with a new computing paradigm or network protocol, by keeping XML flowing through the system, addition of a new layer to deal with this change is feasible.
DOM and SAX are open, language-independent set of interfaces
By defining a set of programming language independent interfaces that allow the accessing and mutation of XML documents, the W3C made it easier for programmers to deal with XML. Not only does XML address the need for a standard information encoding and storage format, it also allows programmers a standard way to use that information. SAX is a very low level API, but it is more than what has been available before it. DOM is a higher level API that even provides a default object model for all XML documents (saving time in creating one from scratch if you are using data is document data).
SAX, DOM and XML are very developer friendly because developers are going to decide whether this technology will be adopted by the majority and become a successful effort towards the goal of interoperable, platform, and device independent computing. |