תפריט ראשי

לעמוד הבא

לעמוד קודם

 

 עיצוב רשימות ממוספרות .

 

התג <ol> יוצר רשימה ממוספרת .

התג <li> ממספר כל אלמנט ברשימה .

התג </ol> סוגר את הרשימה .

 

כל רשימה ממוספרת צריכה להתחיל עם התג <ol> ( ר"ת של ordered list ) ולהסתיים ב- </ol> . כל אלמנט ברשימה צריך להתחיל עם התג <li> .

 

רשימה פשוטה תראה כך בקוד :

 

<p>Three things I know to be true:
<ol>
<li> A cucumber and marmalade sandwich tastes 
better than it sounds.
<li> A mountain bike never belongs in the 
back seat of my mom's sedan.
<li> A head of lettuce isn't a good commuting 
snack.
</ol>

 

ולאחר הרצה זה יראה כך :

 

Three things I know to be true:

  1. A cucumber and marmalade sandwich tastes better than it sounds.
  2. A mountain bike never belongs in the back seat of my mom's sedan.
  3. A head of lettuce isn't a good commuting snack.

 

ישנה אפשרות נוספת בנטסקייפ ליצור רשימה עם תווים רומאיים .

הנה מבחר מן הדוגמאות שניתן ליצור :

 

<li type=1> makes numbers (1, 2, 3)
<li type=A> makes uppercase letters (A, B, C)
<li type=a> makes lowercase letters (a, b, c)
<li type=I> makes uppercase Roman numerals (I, II, III)
<li type=i> makes lowercase Roman numerals (i, ii, iii)
 

ניתן לשלב בין שתי השיטות , כפי שרואים בדוגמא הבאה :

 

<ol>
<li type=I>Never give bell peppers on the first date
<ol>
<li type=A>Intention could be misinterpreted
<ol>
<li type=1>Widely known as lusty vegetable
<li type=1>Viewed by some as symbol of warfare
</ol></ol></ol>

 

ובדפדפן זה יראה כך :

 

  1. Never give bell peppers on the first date
    1. Intention could be misinterpreted
      1. Widely known as lusty vegetable
      2. Viewed by some as symbol of warfare