|
|
#1 |
Member
|
|
|
|
|
#2 |
Member
|
I don't know how much you already know about (X)HTML & CSS, but the easiest and correct way would be to put each of your columns in a block and let them float (well, at least one of them). Something like that:
HTML Code:
<style type="text/css"> #a { float: left; } </style> <div id="a">Left column with group name, etc.</div><div id="b">Right column with points, etc.</div>
__________________
Review my suggestions:
|
|
|
|
#3 |
Member
Join Date: Jun 2009
Location: Herzegovina
Posts: 693
|
Tables would do it fine and as far as i know it's not incorrect. Imo it is easier way to do it.
You can float as Cheaterhater suggested but i think it's lil bit too much work for a simple thing. |
|
|
|
#4 | |
Member
|
Quote:
OT: But for now, you can use something like that: HTML Code:
<style type="text/css"> td#a, td#b { border: 0; padding: 0; vertical-align: top; } td#a { padding-right: 10px; } td#b { padding-left: 10px; } </style> <table><tr><td id="a">Left column with group name, etc.</td><td id="b">Right column with points, etc.</td></tr></table>
__________________
Review my suggestions:
|
|
|
|
|
#5 |
Member
|
I dunno, I am really confused, but I got it to work in a table... If that is alright? :/
---------------------- I got another question. When do I determine where my form ends? As it is now, I got my entire body within a form tag. |
|
|
|
#6 | ||
Member
|
Quote:
Quote:
However, don't put the body in the <form> tag, do it the other way round (HTML elements which form the body must be inside the <body> tag, hence the name). So having something like HTML Code:
<body> <form ...> <table ...> ... </table> </form> </body>
__________________
Review my suggestions:
|
||
|
|
|
#7 |
Member
|
Thank you so much for your help and I am so sorry I haven't replied before, but I've been on a break so couldnt see what it was all about. :P
I got another question that you might have the answer for. For some reason I can't seem to find an easy understandable explanation for why nav tags are needed. ^^ Best regards, Audacious. |
|
|
|
#8 | |
Member
|
Quote:
Apart from that, determining whether some text belongs to the navigation or the actual content could also be useful in other cases. You always have to keep in mind that HTML is a markup language after all, and the <nav> tag is an example for that: It doesn't add any fancy effect for your layout, but it adds some structure, which isn't directly visible to the user, but can be important for parsers.
__________________
Review my suggestions:
|
|
|