w3css lists.htm copyright © tutorialspoint · pdf filew3-xxlarge draws a list with very...

2

Click here to load reader

Upload: lecong

Post on 30-Mar-2018

215 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: w3css lists.htm Copyright © tutorialspoint · PDF filew3-xxlarge Draws a list with very extra large font

http://www.tutorialspoint.com/w3css/w3css_lists.htm Copyright © tutorialspoint.com

W3.CSS - LISTSW3.CSS - LISTS

W3.CSS can be used to display different types of lists using various styles over w3-ul.

Class Name Description

w3-ul Represents a basic list without any border.

w3-striped Displays a stripped list.

w3-bordered Draws a list with border across rows.

w3-border Draws a list with border.

w3-card Draws a list as a card.

w3-tiny Draws a list with very small font.

w3-small Draws a list with small font.

w3-large Draws a list with large font.

w3-xlarge Draws a list with extra large font.

w3-xxlarge Draws a list with very extra large font.

w3-xxxlarge Draws a list with very high extra large font.

w3-jumbo Draws a list with jumbo large font.

Examplew3css_lists.htm

<html> <head> <title>The W3.CSS Lists</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> </head> <body > <h2>List Demo</h2> <hr/> <h3>Simple List</h3> <ul > <li>Mahesh Parashar</li> <li>Rahul Sharma</li> <li>Mohan Sood</li> </ul> <h3>Stripped List with borders</h3> <ul > <li>Mahesh Parashar</li> <li>Rahul Sharma</li> <li>Mohan Sood</li> </ul> <h3>List as Card</h3> <ul > <li>Mahesh Parashar</li> <li>Rahul Sharma</li> <li>Mohan Sood</li> </ul>

Page 2: w3css lists.htm Copyright © tutorialspoint · PDF filew3-xxlarge Draws a list with very extra large font

<h3>List with very small font</h3> <ul > <li>Mahesh Parashar</li> <li>Rahul Sharma</li> <li>Mohan Sood</li> </ul> </body></html>

ResultVerify the result.