Table of Contents
|
All Slides
|
Link List
|
Examples
|
CSCI E-75
<< previous
|
next >>
Lists without list-style
Example 10.49
Example 10.49 Source:
<ul> <li>Big XII</li> <li>Ivy League</li> <li>Pac 10</li> </ul>
Example 10.49 Rendered:
Big XII
Ivy League
Pac 10
Example 10.50
Example 10.50 Source:
<ul id="conferences" > <li>Big XII</li> <li>Ivy League</li> <li>Pac 10</li> </ul>
In
style
element (
<style type="text/css">
) within
head
element:
ul#conferences { list-style: none; }
Example 10.50 Rendered:
With Styles
Without Styles
Table of Contents
|
All Slides
|
Link List
|
Examples
|
CSCI E-75
<< previous
|
next >>