

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a "section counter" with CSS?
To create a section counter with CSS, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/fontawesome.min.css"> <style> * { box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif } .section { float: left; width: 25%; padding: 0 5px; } .sectionContainer {margin: 0 -5px;} .sectionContainer:after { content: ""; display: table; clear: both; } @media screen and (max-width: 600px) { .section { width: 100%; display: block; margin-bottom: 10px; } } .sectionCard { box-shadow: 0 4px 8px 0 rgb(127, 16, 172); padding: 16px; text-align: center; background-color: rgb(127, 16, 172); color: rgb(255, 255, 255); } .fa {font-size:50px;} </style> </head> <body> <h1>Responsive Section Counter Example</h1> <br> <div class="sectionContainer"> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-mobile" aria-hidden="true"></i></p> <h3>100000+</h3> <p>Downloads</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-globe" aria-hidden="true"></i></p> <h3>5000+</h3> <p>Outlets over the globe</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-bar-chart" aria-hidden="true"></i> </p> <h3>Top Performer</h3> <p>In past 5 years</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-handshake-o" aria-hidden="true"></i></p> <h3>3000+</h3> <p>Partners</p> </div> </div> </div> </body> </html>
Output
The above code will produce the following output −
On resizing the screen −
- Related Questions & Answers
- How to create a "coupon" with CSS?
- How to create a "card" with CSS?
- How to create "notes" with CSS?
- How to create a "fixed" menu with CSS?
- How to create a "button group" with CSS?
- How to create a "more" button with CSS?
- How to create a responsive "timeline" with CSS?
- How to create "next" and "previous" buttons with CSS?
- How to create a vertical "button group" with CSS?
- How to create a "user rating" scorecard with CSS?
- How to create a "parallax" scrolling effect with CSS?
- How to create a "black and white" image with CSS?
- How to create a "sticky" navbar with CSS and JavaScript?
- How to create a simple "star rating" look with CSS?
- How to create a "scroll back to top" button with CSS?
Advertisements