W3.CSS - Listy
W3.CSS może być używany do wyświetlania różnych typów list przy użyciu różnych stylów przez w3-ul.
Sr. No. | Nazwa i opis klasy |
---|---|
1 | w3-ul Reprezentuje podstawową listę bez obramowania. |
2 | w3-striped Wyświetla okrojoną listę. |
3 | w3-bordered Rysuje listę z obramowaniem w wierszach. |
4 | w3-border Rysuje listę z obramowaniem. |
5 | w3-card Rysuje listę jako kartę. |
6 | w3-tiny Rysuje listę z bardzo małą czcionką. |
7 | w3-small Rysuje listę małą czcionką. |
8 | w3-large Rysuje listę z dużą czcionką. |
9 | w3-xlarge Rysuje listę z bardzo dużą czcionką. |
10 | w3-xxlarge Rysuje listę z bardzo dużą czcionką. |
11 | w3-xxxlarge Rysuje listę z bardzo dużą, bardzo dużą czcionką. |
12 | w3-jumbo Rysuje listę za pomocą dużej czcionki Jumbo. |
Przykład
w3css_lists.htm
<html>
<head>
<title>The W3.CSS Lists</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://www.w3schools.com/lib/w3.css">
</head>
<body class = "w3-container">
<h2>List Demo</h2>
<hr/>
<h3>Simple List</h3>
<ul class = "w3-ul">
<li>Mahesh Parashar</li>
<li>Rahul Sharma</li>
<li>Mohan Sood</li>
</ul>
<h3>Stripped List with borders</h3>
<ul class = "w3-ul w3-striped w3-bordered w3-border">
<li>Mahesh Parashar</li>
<li>Rahul Sharma</li>
<li>Mohan Sood</li>
</ul>
<h3>List as Card</h3>
<ul class = "w3-ul w3-card-4">
<li>Mahesh Parashar</li>
<li>Rahul Sharma</li>
<li>Mohan Sood</li>
</ul>
<h3>List with very small font</h3>
<ul class = "w3-ul w3-tiny">
<li>Mahesh Parashar</li>
<li>Rahul Sharma</li>
<li>Mohan Sood</li>
</ul>
</body>
</html>
Wynik
Sprawdź wynik.