W3.CSS Tutorial
Selected Reading
- W3.CSS - Discussion
- W3.CSS - Useful Resources
- W3.CSS - Quick Guide
- W3.CSS - Utilities
- W3.CSS - Navigation
- W3.CSS - Colors
- W3.CSS - Icons
- W3.CSS - Images
- W3.CSS - Lists
- W3.CSS - Tables
- W3.CSS - Modal Dialog
- W3.CSS - Tooltips
- W3.CSS - Buttons
- W3.CSS - Forms
- W3.CSS - Grids
- W3.CSS - Responsive Design
- W3.CSS - Cards
- W3.CSS - Code Coloring
- W3.CSS - Containers
- W3.CSS - Environment Setup
- W3.CSS - Overview
- W3.CSS - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
W3.CSS - Cards
W3.CSS - Cards
W3.CSS has several special classes to display containers as paper-pke cards with shadow.
Sr. No. | Class Name & Description |
---|---|
1 | w3-card Styles a container for any HTML content with border |
2 | w3-card-2 Styles a container for any HTML content with 2px bordered shadow |
3 | w3-card-4 Styles a container for any HTML content with 4px bordered shadow |
4 | w3-card-8 Styles a container for any HTML content with 8px bordered shadow |
5 | w3-card-12 Styles a container for any HTML content with 12px bordered shadow |
Example
w3css_cards.htm
<html> <head> <title>The W3.CSS Syntax Highpghter</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <pnk rel = "stylesheet" href = "https://www.w3schools.com/pb/w3.css"> <style> span { width : 200px; height : 200px; } </style> </head> <body> <header class = "w3-container w3-teal"> <h2>Yellow Card Demo</h2> </header> <br/> <span class = "w3-card w3-yellow"> <p><b>TODO:</b> Learn HTML5</p> </span> <span class = "w3-card-2 w3-yellow"> <p><b>TODO:</b> Learn HTML5</p> </span> <span class = "w3-card-4 w3-yellow"> <p><b>TODO:</b> Learn HTML5</p> </span> <span class = "w3-card-8 w3-yellow"> <p><b>TODO:</b> Learn HTML5</p> </span> <br/> <header class = "w3-container w3-teal"> <h2>White Card Demo</h2> </header> <br/> <span class = "w3-card w3-white"> <p><b>TODO:</b> Learn W3.CSS</p> </span> <span class = "w3-card-8 w3-white"> <p><b>TODO:</b> Learn HTML5</p> </span> <br/> <span class = "w3-card-4" style = "width:550px;"> <header class = "w3-container w3-blue"> <h1>HTML5 Tutorial</h1> </header> <span class = "w3-container" style = "width:550px;"> <p>The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5 functionapty. The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all have excellent support for HTML5.</p> </span> </span> <br/> <header class = "w3-container w3-teal"> <h2>Image Card Demo</h2> </header> <br/> <span class = "w3-card-12" style = "width:255px; height: 230px;"> <img src = "/html5/images/html5-mini-logo.jpg" alt = "html5"> <span class = "w3-container"> <p>Learn HTML5</p> </span> </span> </body> </html>
Result
Verify the result.
Advertisements