473,396 Members | 1,892 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

best way to present "hall of fame"

Hi,
I want to present some results of former years of our sports club.
Example: 10.Platz Junioren Buchholz, Gregor
Now I'm thinking of the best way to put it into Tags, that can be reused
and formatted by CSS.

<p class="result">
<span class="rank">10.Platz</span>
<span class="age">Junioren</span>
<span class="name">Buchholz, Gregor</span>
<p>

IMHO this is much code for little data, but I have no idea how to do it
some other way? Do you?

thx Sebastian Kurt
Jul 20 '05 #1
4 1900

"Sebastian Kurt" <ku**@inf.fu-berlin.de> wrote in message
news:2p************@uni-berlin.de...
Hi,
I want to present some results of former years of our sports club.
Example: 10.Platz Junioren Buchholz, Gregor
Now I'm thinking of the best way to put it into Tags, that can be reused
and formatted by CSS.

<p class="result">
<span class="rank">10.Platz</span>
<span class="age">Junioren</span>
<span class="name">Buchholz, Gregor</span>
<p>

IMHO this is much code for little data,
It seems that way, but that's just the way it is sometimes. :-) I think this
is all fine--if you really want to use a different style for each kind of
data. If not, then this probably *is* too much code.
but I have no idea how to do it
some other way? Do you?

thx Sebastian Kurt


Jul 20 '05 #2
Sebastian Kurt <ku**@inf.fu-berlin.de> wrote:
I want to present some results of former years of our sports club.
Example: 10.Platz Junioren Buchholz, Gregor
Presumably as _sets_ of such data? That calls for tables.
Now I'm thinking of the best way to put it into Tags, that can be
reused and formatted by CSS.

<p class="result">
<span class="rank">10.Platz</span>
<span class="age">Junioren</span>
<span class="name">Buchholz, Gregor</span>
<p>


Doesn't look like a _paragraph_ to me.

But as a row of a table, in the appropriate syntactic context of course,
it makes a lot of sense:

<tr>
<td class="rank">10. Platz</td>
<td class="age">Junioren</td>
<td class="name">Buchholz, Gregor</td>
</tr>

Using class for each <td> is the safest way to ensure that you can style
the table conveniently.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Jul 20 '05 #3
Jukka K. Korpela wrote:
Sebastian Kurt <ku**@inf.fu-berlin.de> wrote:
Presumably as _sets_ of such data? That calls for tables.
but tables are much more overhead... (?)
<p class="result">
<span class="rank">10.Platz</span>
<span class="age">Junioren</span>
<span class="name">Buchholz, Gregor</span>
<p>


Doesn't look like a _paragraph_ to me.


why? what makes a _paragraph_?
But as a row of a table, in the appropriate syntactic context of course,
it makes a lot of sense:

<tr>
<td class="rank">10. Platz</td>
<td class="age">Junioren</td>
<td class="name">Buchholz, Gregor</td>
</tr>

Using class for each <td> is the safest way to ensure that you can style
the table conveniently.


but using a table seems not making sense because there is often only one
line.

sebastian
Jul 20 '05 #4
Sebastian Kurt wrote:
Jukka K. Korpela wrote:
Sebastian Kurt <ku**@inf.fu-berlin.de> wrote:

Presumably as _sets_ of such data? That calls for tables.


but tables are much more overhead... (?)


How is that relevant? If the information is a table, then no markup
besides <table> is appropriate.
<p class="result">
<span class="rank">10.Platz</span>
<span class="age">Junioren</span>
<span class="name">Buchholz, Gregor</span>
<p>


Doesn't look like a _paragraph_ to me.

why? what makes a _paragraph_?


http://smac.ucsd.edu/cgi-bin/http_we...ndex=paragraph
http://dictionary.reference.com/search?q=paragraph

--
Brian (remove ".invalid" to email me)
http://www.tsmchughs.com/
Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Gary D. Rezek | last post by:
Hi All, First of all I'm mostly an MS Access guy (and novice learning MSSQL guy) and put on this project because of personnel changes, etc and because of db experience. I've only been doing this...
10
by: .:mmac:. | last post by:
My ASP page is doing something wierd, I think it has something to do with the %2E replacing the dot in the file name But in addition, if I right click the link and select "save as", the file...
7
by: marcus hall | last post by:
Now that g++ is complaining about offset-of() applied to a class, it raises the issue of how to implement a "container-of" concept in C++. Specifically, I have a pointer to a class that is...
81
by: Matt | last post by:
I have 2 questions: 1. strlen returns an unsigned (size_t) quantity. Why is an unsigned value more approprate than a signed value? Why is unsighned value less appropriate? 2. Would there...
4
by: MoF | last post by:
Hello! I have for a long time used the line: Set FS=Server.CreateObject("Scripting.FileSystemObject") in my ASP code. Suddenly one day this week it stopped working and I now get the error: ...
5
by: Kruke | last post by:
_____the best of c programming from its creator dennis ritchie______ Download Link http://www.megaupload.com/?d=FF5ESFLS ********************************************************** Use...
15
by: Matt Kruse | last post by:
Consider the following two functions: function func1() { var o ; if ( (o=document.forms) && (o=o) && (o=o.elements) && (o=o.sel) && (o=o.options) && (o=o)
3
by: Phil Endecott | last post by:
Dear Experts, It looks as if the HTML4 spec does not define a meaning for empty height and width attributes in an IMG element. Moz seems to ignore them, while IE7 sets the dimension to 1 pixel...
10
by: hall.jeff | last post by:
As a relative new comer to Python, I haven't done a heck of a lot of hacking around with it. I had my first run in with Python's quirky (to me at least) tendency to assign by reference rather than...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.