SlideShare une entreprise Scribd logo
1  sur  47
UNDERSTANDING LISTS
    by Ray Villalobos
WHAT ARE LISTS?
WHAT ARE LISTS?

• Compound Tags
WHAT ARE LISTS?

• Compound Tags

•3   different types
WHAT ARE LISTS?

• Compound Tags

•3   different types

 • UL   - Unordered Lists
WHAT ARE LISTS?

• Compound Tags

•3   different types

 • UL   - Unordered Lists

 • OL    - Ordered Lists
WHAT ARE LISTS?

• Compound Tags

•3   different types

 • UL   - Unordered Lists

 • OL    - Ordered Lists

 • DL    - Definition Lists
UNORDERED LISTS



<ul>
  <li>Bread</li>
  <li>Lunchmeat</li>
  <li>Fruit</li>
</ul>
UNORDERED LISTS

• Order   doesn’t matter

   <ul>
     <li>Bread</li>
     <li>Lunchmeat</li>
     <li>Fruit</li>
   </ul>
ORDERED LISTS


<ol>
  <li>Private</li>
  <li>Captain</li>
  <li>General</li>
</ol>
ORDERED LISTS

• Order   in the list has context
                 <ol>
                   <li>Private</li>
                   <li>Captain</li>
                   <li>General</li>
                 </ol>
DEFINITION LISTS


<dl>
  <dt>Border-radius</dt>
  <dd>A rule that let’s you specify rounded
  edges in box elements.</dd>

  <dt>Browser Prefixes</dt>
  <dd>Browsers implemented a set of prefixes
  to each rule like –webkit border-radius that
  allows for emerging CSS rules to be used
  earlier.</dd>

  <dt>CSS Animations</dt>
  <dd>CSS Animations allow you to modify
  transformations over time by the
  use of keyframes.</dd>
</dl>
DEFINITION LISTS
• List   of terms and definitions


   <dl>
     <dt>Border-radius</dt>
     <dd>A rule that let’s you specify rounded
     edges in box elements.</dd>

     <dt>Browser Prefixes</dt>
     <dd>Browsers implemented a set of prefixes
     to each rule like –webkit border-radius that
     allows for emerging CSS rules to be used
     earlier.</dd>

     <dt>CSS Animations</dt>
     <dd>CSS Animations allow you to modify
     transformations over time by the
     use of keyframes.</dd>
   </dl>
DEFINITION LISTS
• List   of terms and definitions

• Much     less common
   <dl>
     <dt>Border-radius</dt>
     <dd>A rule that let’s you specify rounded
     edges in box elements.</dd>

     <dt>Browser Prefixes</dt>
     <dd>Browsers implemented a set of prefixes
     to each rule like –webkit border-radius that
     allows for emerging CSS rules to be used
     earlier.</dd>

     <dt>CSS Animations</dt>
     <dd>CSS Animations allow you to modify
     transformations over time by the
     use of keyframes.</dd>
   </dl>
NESTING LISTS
<h2>Nested List</h2>
<ul>
  <li>Bread
     <ul>
       <li>Cuban</li>
       <li>French</li>
       <li>Croissants</li>
     </ul>
  </li>
  <li>Lunchmeat
     <ul>
       <li>Ham</li>
       <li>Roast Beef</li>
       <li>Turkey</li>
     </ul>
  </li>
  <li>Fruit
     <ul>
       <li>Bananas</li>
       <li>Pears</li>
       <li>Apples</li>
     </ul>
  </li>
</ul>
NESTING LISTS
<h2>Nested List</h2>
<ul>                         • Nest   lists inside other lists
  <li>Bread
     <ul>
       <li>Cuban</li>
       <li>French</li>
       <li>Croissants</li>
     </ul>
  </li>
  <li>Lunchmeat
     <ul>
       <li>Ham</li>
       <li>Roast Beef</li>
       <li>Turkey</li>
     </ul>
  </li>
  <li>Fruit
     <ul>
       <li>Bananas</li>
       <li>Pears</li>
       <li>Apples</li>
     </ul>
  </li>
</ul>
NESTING LISTS
<h2>Nested List</h2>
<ul>                         • Nest   lists inside other lists
  <li>Bread
     <ul>
       <li>Cuban</li>
       <li>French</li>
                             • Easy   to mess up
       <li>Croissants</li>
     </ul>
  </li>
  <li>Lunchmeat
     <ul>
       <li>Ham</li>
       <li>Roast Beef</li>
       <li>Turkey</li>
     </ul>
  </li>
  <li>Fruit
     <ul>
       <li>Bananas</li>
       <li>Pears</li>
       <li>Apples</li>
     </ul>
  </li>
</ul>
BULLET STYLES
BULLET STYLES
•   The type attribute
BULLET STYLES
•   The type attribute

•   For UL lists
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle

        •   ul {list-style-type: circle}
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle

        •   ul {list-style-type: circle}

•   For OL lists
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle

        •   ul {list-style-type: circle}

•   For OL lists

    •   upper or lower, alpha or roman
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle

        •   ul {list-style-type: circle}

•   For OL lists

    •   upper or lower, alpha or roman

    •   decimal (default), decimal-leading-zero
BULLET STYLES
•   The type attribute

•   For UL lists

    •   disc (default), square and circle

        •   ul {list-style-type: circle}

•   For OL lists

    •   upper or lower, alpha or roman

    •   decimal (default), decimal-leading-zero

        •   ol {list-style-type: lower-alpha}
CUSTOM IMAGES
CUSTOM IMAGES

•   list-style-image
CUSTOM IMAGES

•   list-style-image

    •   ul {list-style-image: url(icons/icon-document.gif)};
SHORTCUT
SHORTCUT


• list-style
SHORTCUT


• list-style

  •   ul {list-style: circle };
SHORTCUT


• list-style

  •   ul {list-style: circle };

  •   ul {list-style: url(icons/icon-document.gif)};
SHORTCUT


• list-style

  •   ul {list-style: circle };

  •   ul {list-style: url(icons/icon-document.gif)};

  •   ul {list-style: circle url(icons/icon-document.gif)};
NO BULLETS
NO BULLETS


• Easily   get rid of Bullets
NO BULLETS


• Easily   get rid of Bullets
    •   ul {list-style:none;}
CONTROLLING SPACING




   ul,ol {
     list-style: none;
     margin: 0;
     padding: 0;
   }
CONTROLLING SPACING

• ULs   have margins, vary per browser




                ul,ol {
                  list-style: none;
                  margin: 0;
                  padding: 0;
                }
CONTROLLING SPACING

• ULs    have margins, vary per browser

• LIs   have padding, vary per browser


                 ul,ol {
                   list-style: none;
                   margin: 0;
                   padding: 0;
                 }
CHANGING DISPLAY
CHANGING DISPLAY

• ULs   and LIs are block level
CHANGING DISPLAY

• ULs   and LIs are block level

• display-inline
CHANGING DISPLAY

• ULs   and LIs are block level

• display-inline

  • Can’t   modify widths of inline elements
CHANGING DISPLAY

• ULs   and LIs are block level

• display-inline

  • Can’t   modify widths of inline elements

• display-inline-block
CHANGING DISPLAY

• ULs   and LIs are block level

• display-inline

  • Can’t   modify widths of inline elements

• display-inline-block

  • Let’s   you modify w
THE END

Contenu connexe

En vedette

HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & LlinksNisa Soomro
 
Server vs Client in real life and in programming world
Server vs Client in real life and in programming worldServer vs Client in real life and in programming world
Server vs Client in real life and in programming worldManoj Kumar
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - CommentsHameda Hurmat
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTMLAarti P
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML PresentationNimish Gupta
 
Html table tags
Html table tagsHtml table tags
Html table tagseShikshak
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgroundsnobel mujuji
 
Multimedia introduction
Multimedia introductionMultimedia introduction
Multimedia introductionJohn Ospina
 
2.multimedia unit 1 introduction
2.multimedia unit 1 introduction2.multimedia unit 1 introduction
2.multimedia unit 1 introductionVikas Agrahari
 
Clientserver Presentation
Clientserver PresentationClientserver Presentation
Clientserver PresentationTuhin_Das
 
Client Server Architecture
Client Server ArchitectureClient Server Architecture
Client Server Architecturesuks_87
 
Multimedia data and file format
Multimedia data and file formatMultimedia data and file format
Multimedia data and file formatNiketa Jain
 

En vedette (20)

HTML Lists & Llinks
HTML Lists & LlinksHTML Lists & Llinks
HTML Lists & Llinks
 
Html hyperlinks
Html hyperlinksHtml hyperlinks
Html hyperlinks
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPage
 
Server vs Client in real life and in programming world
Server vs Client in real life and in programming worldServer vs Client in real life and in programming world
Server vs Client in real life and in programming world
 
Html links
Html linksHtml links
Html links
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - Comments
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
LINKING IN HTML
LINKING IN HTMLLINKING IN HTML
LINKING IN HTML
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML Presentation
 
Html tables examples
Html tables   examplesHtml tables   examples
Html tables examples
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgrounds
 
Multimedia introduction
Multimedia introductionMultimedia introduction
Multimedia introduction
 
Multimedia
MultimediaMultimedia
Multimedia
 
2.multimedia unit 1 introduction
2.multimedia unit 1 introduction2.multimedia unit 1 introduction
2.multimedia unit 1 introduction
 
What is Multimedia?.pptx
What is Multimedia?.pptxWhat is Multimedia?.pptx
What is Multimedia?.pptx
 
Clientserver Presentation
Clientserver PresentationClientserver Presentation
Clientserver Presentation
 
Client Server Architecture
Client Server ArchitectureClient Server Architecture
Client Server Architecture
 
Client server architecture
Client server architectureClient server architecture
Client server architecture
 
Multimedia data and file format
Multimedia data and file formatMultimedia data and file format
Multimedia data and file format
 

Plus de Ray Villalobos

Plus de Ray Villalobos (9)

Making money with Google's Adsense
Making money with Google's AdsenseMaking money with Google's Adsense
Making money with Google's Adsense
 
Creating forms
Creating formsCreating forms
Creating forms
 
Doing business
Doing businessDoing business
Doing business
 
Analytics essentials
Analytics essentialsAnalytics essentials
Analytics essentials
 
Online Advertising
Online AdvertisingOnline Advertising
Online Advertising
 
Social media fundamentals
Social media fundamentalsSocial media fundamentals
Social media fundamentals
 
Building Semantic HTML tables
Building Semantic HTML tablesBuilding Semantic HTML tables
Building Semantic HTML tables
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
 
CSS Fundamentals
CSS FundamentalsCSS Fundamentals
CSS Fundamentals
 

Dernier

Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,dollysharma2066
 
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)Delhi Call girls
 
WOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxWOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxpadhand000
 
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girlsPooja Nehwal
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theorydrae5
 
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)Delhi Call girls
 
The Selfspace Journal Preview by Mindbrush
The Selfspace Journal Preview by MindbrushThe Selfspace Journal Preview by Mindbrush
The Selfspace Journal Preview by MindbrushShivain97
 
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)Delhi Call girls
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Morcall Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Morvikas rana
 
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...PsychicRuben LoveSpells
 
LC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdfLC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdfpastor83
 
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)Delhi Call girls
 

Dernier (15)

Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Tingre Nagar ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,
8377087607 Full Enjoy @24/7-CLEAN-Call Girls In Chhatarpur,
 
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Palam (Delhi)
 
WOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxWOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptx
 
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls
9892124323, Call Girls in mumbai, Vashi Call Girls , Kurla Call girls
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theory
 
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Jasola (Delhi)
 
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
(Anamika) VIP Call Girls Navi Mumbai Call Now 8250077686 Navi Mumbai Escorts ...
 
The Selfspace Journal Preview by Mindbrush
The Selfspace Journal Preview by MindbrushThe Selfspace Journal Preview by Mindbrush
The Selfspace Journal Preview by Mindbrush
 
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Mukherjee Nagar (Delhi)
 
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
(Aarini) Russian Call Girls Surat Call Now 8250077686 Surat Escorts 24x7
 
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Morcall Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
call Now 9811711561 Cash Payment乂 Call Girls in Dwarka Mor
 
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
$ Love Spells^ 💎 (310) 882-6330 in West Virginia, WV | Psychic Reading Best B...
 
LC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdfLC_YouSaidYes_NewBelieverBookletDone.pdf
LC_YouSaidYes_NewBelieverBookletDone.pdf
 
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
2k Shots ≽ 9205541914 ≼ Call Girls In Dashrath Puri (Delhi)
 

Working with HTML Lists

  • 1. UNDERSTANDING LISTS by Ray Villalobos
  • 3. WHAT ARE LISTS? • Compound Tags
  • 4. WHAT ARE LISTS? • Compound Tags •3 different types
  • 5. WHAT ARE LISTS? • Compound Tags •3 different types • UL - Unordered Lists
  • 6. WHAT ARE LISTS? • Compound Tags •3 different types • UL - Unordered Lists • OL - Ordered Lists
  • 7. WHAT ARE LISTS? • Compound Tags •3 different types • UL - Unordered Lists • OL - Ordered Lists • DL - Definition Lists
  • 8. UNORDERED LISTS <ul> <li>Bread</li> <li>Lunchmeat</li> <li>Fruit</li> </ul>
  • 9. UNORDERED LISTS • Order doesn’t matter <ul> <li>Bread</li> <li>Lunchmeat</li> <li>Fruit</li> </ul>
  • 10. ORDERED LISTS <ol> <li>Private</li> <li>Captain</li> <li>General</li> </ol>
  • 11. ORDERED LISTS • Order in the list has context <ol> <li>Private</li> <li>Captain</li> <li>General</li> </ol>
  • 12. DEFINITION LISTS <dl> <dt>Border-radius</dt> <dd>A rule that let’s you specify rounded edges in box elements.</dd> <dt>Browser Prefixes</dt> <dd>Browsers implemented a set of prefixes to each rule like –webkit border-radius that allows for emerging CSS rules to be used earlier.</dd> <dt>CSS Animations</dt> <dd>CSS Animations allow you to modify transformations over time by the use of keyframes.</dd> </dl>
  • 13. DEFINITION LISTS • List of terms and definitions <dl> <dt>Border-radius</dt> <dd>A rule that let’s you specify rounded edges in box elements.</dd> <dt>Browser Prefixes</dt> <dd>Browsers implemented a set of prefixes to each rule like –webkit border-radius that allows for emerging CSS rules to be used earlier.</dd> <dt>CSS Animations</dt> <dd>CSS Animations allow you to modify transformations over time by the use of keyframes.</dd> </dl>
  • 14. DEFINITION LISTS • List of terms and definitions • Much less common <dl> <dt>Border-radius</dt> <dd>A rule that let’s you specify rounded edges in box elements.</dd> <dt>Browser Prefixes</dt> <dd>Browsers implemented a set of prefixes to each rule like –webkit border-radius that allows for emerging CSS rules to be used earlier.</dd> <dt>CSS Animations</dt> <dd>CSS Animations allow you to modify transformations over time by the use of keyframes.</dd> </dl>
  • 15. NESTING LISTS <h2>Nested List</h2> <ul> <li>Bread <ul> <li>Cuban</li> <li>French</li> <li>Croissants</li> </ul> </li> <li>Lunchmeat <ul> <li>Ham</li> <li>Roast Beef</li> <li>Turkey</li> </ul> </li> <li>Fruit <ul> <li>Bananas</li> <li>Pears</li> <li>Apples</li> </ul> </li> </ul>
  • 16. NESTING LISTS <h2>Nested List</h2> <ul> • Nest lists inside other lists <li>Bread <ul> <li>Cuban</li> <li>French</li> <li>Croissants</li> </ul> </li> <li>Lunchmeat <ul> <li>Ham</li> <li>Roast Beef</li> <li>Turkey</li> </ul> </li> <li>Fruit <ul> <li>Bananas</li> <li>Pears</li> <li>Apples</li> </ul> </li> </ul>
  • 17. NESTING LISTS <h2>Nested List</h2> <ul> • Nest lists inside other lists <li>Bread <ul> <li>Cuban</li> <li>French</li> • Easy to mess up <li>Croissants</li> </ul> </li> <li>Lunchmeat <ul> <li>Ham</li> <li>Roast Beef</li> <li>Turkey</li> </ul> </li> <li>Fruit <ul> <li>Bananas</li> <li>Pears</li> <li>Apples</li> </ul> </li> </ul>
  • 19. BULLET STYLES • The type attribute
  • 20. BULLET STYLES • The type attribute • For UL lists
  • 21. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle
  • 22. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle • ul {list-style-type: circle}
  • 23. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle • ul {list-style-type: circle} • For OL lists
  • 24. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle • ul {list-style-type: circle} • For OL lists • upper or lower, alpha or roman
  • 25. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle • ul {list-style-type: circle} • For OL lists • upper or lower, alpha or roman • decimal (default), decimal-leading-zero
  • 26. BULLET STYLES • The type attribute • For UL lists • disc (default), square and circle • ul {list-style-type: circle} • For OL lists • upper or lower, alpha or roman • decimal (default), decimal-leading-zero • ol {list-style-type: lower-alpha}
  • 28. CUSTOM IMAGES • list-style-image
  • 29. CUSTOM IMAGES • list-style-image • ul {list-style-image: url(icons/icon-document.gif)};
  • 32. SHORTCUT • list-style • ul {list-style: circle };
  • 33. SHORTCUT • list-style • ul {list-style: circle }; • ul {list-style: url(icons/icon-document.gif)};
  • 34. SHORTCUT • list-style • ul {list-style: circle }; • ul {list-style: url(icons/icon-document.gif)}; • ul {list-style: circle url(icons/icon-document.gif)};
  • 36. NO BULLETS • Easily get rid of Bullets
  • 37. NO BULLETS • Easily get rid of Bullets • ul {list-style:none;}
  • 38. CONTROLLING SPACING ul,ol { list-style: none; margin: 0; padding: 0; }
  • 39. CONTROLLING SPACING • ULs have margins, vary per browser ul,ol { list-style: none; margin: 0; padding: 0; }
  • 40. CONTROLLING SPACING • ULs have margins, vary per browser • LIs have padding, vary per browser ul,ol { list-style: none; margin: 0; padding: 0; }
  • 42. CHANGING DISPLAY • ULs and LIs are block level
  • 43. CHANGING DISPLAY • ULs and LIs are block level • display-inline
  • 44. CHANGING DISPLAY • ULs and LIs are block level • display-inline • Can’t modify widths of inline elements
  • 45. CHANGING DISPLAY • ULs and LIs are block level • display-inline • Can’t modify widths of inline elements • display-inline-block
  • 46. CHANGING DISPLAY • ULs and LIs are block level • display-inline • Can’t modify widths of inline elements • display-inline-block • Let’s you modify w

Notes de l'éditeur

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n