
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Found 1592 Articles for CSS

2K+ Views
We'll build a straightforward interactive quiz tool that allows users to answer questions, select their choices, and view their scores at the end. We'll accomplish this using HTML, CSS, and JavaScript. Guide to Building a Simple Quiz App Step 1 - Set Up Your HTML: First, create an index.html file to serve as the foundation for our quiz. This file will contain a container for displaying the quiz questions, answer options, and a submit button. Here’s a simple structure to get started. Step 2 - Style Your Quiz ... Read More

3K+ Views
A responsive restaurant website is not only focused on promoting a variety of the menu and services but also helps you to provide solutions for an efficient ordering and reservations system. If your restaurant's website design is on point, it becomes one of the primary reasons customers book your restaurant. Here, you will learn to create a responsive website for a restaurant using HTML and CSS from scratch. Reasons to Create Restaurant Website Increased Visibility − It also makes it easier for the potential customer to locate your restaurant from the internet. Convenience − Anyone can observe your menu, ... Read More

241 Views
Learn how to design a technical documentation website using HTML and CSS. Website's layout is focused on optimized content organization in the field of programming documentation to provide user friendly navigation. To achieve a non-technical look and feel, HTML is used for content layout and CSS for structuring and presentation this documentation user friendly. Key Steps to Design Responsive Technical Documentation Website The implementation approach consists of several key points that contribute to the overall design and functionality of the webpage − HTML Structure − The structure of the HTML document and its division ... Read More

317 Views
To control the size of background images, it's important to ensure they look good on all screen sizes. Images can stretch, crop, or repeat, which can make the design unappealing, especially when container sizes change in responsive layouts. Our task is to control background image sizes with Tailwind CSS. We must ensure the images fit their containers, maintain quality and aspect ratios, and adapt to different screen sizes and devices. Approaches to control background image size Tailwind CSS provides several approaches to managing background image sizes: Using the bg-auto utility ... Read More

217 Views
Every HTML document can contain different image formats, such as PNG, jpeg, SVG, gif, etc. that can be adjusted according to your needs. This article will explore various ways to resize an SVG image in HTML. SVG (Scalable Vector Graphics) is an image format used in web development. It is an XML-based image format that can be scaled to any size without losing its quality. Due to this reason, it is best to use an SVG image for logos and icons. These images are resolution-independent, meaning they can be scaled to any size without losing quality. Resizing ... Read More

267 Views
Sometimes we want to set a base attribute to everything and allow more specific selectors to adjust it for certain elements as needed. There are also cases, especially when doing brief temporary testing, where we want a font to apply to all text no matter what. Ways to Set Global Font You can use the below-mentioned approaches to set the global font to your entire HTML document. Using Universal Selector Using !important Keyword Get Started with Approaches Here you will see an example of each approach mentioned above ... Read More

166 Views
In this article, we will create a Neumorphism Loading Spinner using HTML and CSS. The loading spinner is a common UI element used to indicate a process in progress, such as loading content or waiting for data from the server. We’ll add a modern touch to it using the Neumorphism design technique. Neumorphic designs give a 3D look by combining highlights and shadows around elements, making them appear to protrude or sink into the surface. Approach Let’s walk through the steps to create the Neumorphism loading spinner. Setting Up the HTML Structure We'll start by writing ... Read More

213 Views
CSS inline-flex and inline-block are the values of CSS display property that are used to control how elements align and behave within their containers. When working on a responsive layout, the developer often needs to control how elements align and behave within their containers. Sometimes, we need elements to behave like inline elements but with some block-level properties, while at other times, we need more control over the alignment and spacing of children elements. This brings us to the comparison of two important CSS properties inline-block and inline flex. CSS inline-block and inline-flex Value of Display ... Read More

112 Views
Glassmorphism is a design trend that makes elements appear translucent on the user interface. You may have seen on some websites a few components are semi-transparent looks like frosted glass which is an example of glass morphism. The morph part of glass morphism implies depth to elements, that is, elements appearing higher or lower than others about the view of the user. Approach to Create Glassmorphic Sidebar In this article, we are going to build a glass morphic sidebar in HTML and CSS. Let's begin. Step 1: In this step, we will ... Read More

134 Views
This article provides a complete guide on how to Vertically Align Text with Large Font Awesome Icons with the help of CSS. it is very challenging when aiming for perfect vertical alignment. This article will explore various methods to vertically align text with a large Font Awesome icon using CSS. Approaches to Vertically Align the Text with a Large Font Awesome Icon There are three different approaches to vertically align the text content along with large font awesome icon using CSS. Using Flexbox Using Inline-Block and Vertical Align ... Read More