All you need to know about Pirate-Community

Phoenixian told you about xHTML, and he is right, but all browsers know HTML and still recognize <br>.
 
Then thats no problem for me, although Xhtml doesn't seem much harder, I'll will learn it. :P
 
I learned already lol! Well, a chapter of it, not a whole class, I just forgot all the commands that go inside that tag lol!
 
CSS is sort of confusing to me, but the more I mess with it, and ask questions on it I do start understanding it better.
 
I understand it, of course. I just don't remember the things that go in that tag like:

Bold {Blah Blah Blah; Bah}

Something like that. :P
 
Code:
body 
{ 
background-color: #000000;
background-image: url(background.png);
background-repeat repeat;
}
 
Here is another example of CSS:

Code:
div.imagecaption {
     float: right;
     width: 182px;
     margin: 0 1em 1em 1em;
     padding: 15px 15px 20px 15px;
     display: inline;
     text-align: center;
     border-color: #ccc #999 #999 #ccc;
     border-width: 1px 2px 2px 1px;
     border-style: solid;
     background: url(bg_c1.gif) repeat-x 0 100%;
}

div.imagecaption img {
     border-color: #000 #ccc #ccc #000;
     border-width: 1px 1px 1px 1px;
     border-style: solid;
}
 
CSS is something you very much get hooked on once you learn it, just because it makes design (and redesign) so much easier on you...

...then IE gets in the mix.

They're the only browser that doesn't fully support CSS2, so I can add in properties like...
.charinfo{min-height: 150px;}
...and not have IE recognise it, so instead, for the divs that were smaller than 150px in IE, I actually had to go in and define their styles specifically because I wanted my style sheet to validate rather than using hacks. And I test my site on Safari, Firefox, Opera, Netscape 8, and Internet Exploder (lol), and IE was the ONLY one that didn't recognise the tag.
 
Yeah, I could tell. I have no problem with CSS, I just need to take more time with JavaScript, its a bit tough to learn. But, now, I get a little bit. Like the functions.... although I can't remember that.
 
Back
Top