Hi, www.goome.co.nz I want to have that top bar that has the links in it, positioned so theres no white space around it like at www.trademe.co.nz. What do i need to do to get it up there? Cheers.
hi, you just need to zero body's margins the quickiest way is to do this: <body style="margin:0"> or - of course - if you want to do that in CSS: body {margin:0} voila
You don't need to write the semi-colon in. It's basically just saying there's another argument after and if there isn't one, it's perfectly valid. However it's better practice to include it, because at a later stage, it makes it easier to maintain.
I was under the understanding that it is a code line terminator (like in c++) and that the standard states that if the line isn't terminated it will not work. It maybe that the terminator is allowed to be assumed when the next piece of structure met is a closing bracket, but as you stated that's not the normal case for most lines.
To clarify; it's not needed at the end of the CSS statement proceeding the close bracket or the double prime for inline styling.