This is the second time I ask this question, since when I first posted it, I have the files on a server not open to the public.
--
I'm learning CSS using the book called "Beginning CSS Web Development: From Novice to Professional" by Simon Collison, distributed by Apress.
I'm just in the first three chapters and I already have a display issue. The book's description shows up properly in IE but not in Firefox. There are nothing fancy yet, since it's still early in the book, but I feel I can't proceed unless I figure out what I did wrong three chapters into the book.
I downloaded most of the base templates from the apress website, and just followed along with the book. The result is here:
http://home.ca.rr.com/trashcanltd/cssclass/
The CSS files are here:
http://home.ca.rr.com/trashcanltd/cssclass/default.css
http://home.ca.rr.com/trashcanltd/cssclass/external.css
http://home.ca.rr.com/trashcanltd/cssclass/layout.css
Thanks.
2007-02-05
05:23:23
·
7 answers
·
asked by
Ninjaso7
2
in
Computers & Internet
➔ Programming & Design
For those that were not able to download the CSS files, here they are in text form. I could'nt add them earlier because of the character limit.
default.css
p {
color:#f00;
font-size:12px;
}
external.css
@import url("default.css");
@import url ("layout.css");
layout.css
#header {
height: 100px;
width: 100%;
border: 1px solid #999;
}
/* Container holds all visible page elements */
#container {
padding: 20px;
border: 1px solid #000;
background: #CCC;
}
/* Define styling of our reusable box */
.box {
margin: 10px;
padding: 20px;
border: 1px solid #000;
}
2007-02-05
05:40:59 ·
update #1