
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 1594 Articles for CSS

890 Views
Introduction on CSS CSS, or Cascading Style Sheets, is a style sheet language used to describe the presentation of a document written in HTML or XML. CSS allows web developers to control a web page's layout, colors, fonts, and other visual elements. Doing so plays a crucial role in website design and creates a better online experience for users. Importance of CSS The importance of CSS in website design cannot be overstated. CSS allows for greater flexibility and control over the visual appearance of a website. With CSS, web developers can create complex layouts, use custom fonts, and add ... Read More
1K+ Views
CSS, the acronym for cascading style sheets, is a straightforwardly built language that makes it easier to present web pages. Applying styles to web pages is possible with CSS. In this article we are going to see how we can use CSS to add an image as the list-item marker in a list. Approach We are going to make use of the list-style-image property to accomplish the task. The list-style-image property allows the user to set an image as the list-item marker in a list. Syntax list-style-image: none | url | initial | inherit; Example Step 1 − First ... Read More
11K+ Views
The tag is a commonly used HTML element for adding line breaks in web content. Nevertheless, on occasion, the pre-existing altitude of a line discontinuity could be deemed inadequate, hence necessitating the augmentation of the gap between successive lines of written material. In this discourse, we shall explore various methodologies to modify the height of a tag, encompassing the utilization of CSS line-height property and the addition of supplementary line break elements. Regardless of whether you are an unskilled or a skilled web developer, this handbook will furnish you with a comprehensive comprehension of how to adapt the ... Read More
6K+ Views
In this article, we will delve into the intricacies of modifying the degree of transparency of an HTML element based on the user's scrolling activity. This technique can introduce an added layer of dynamism to your website, and can be accomplished effortlessly with a minimal amount of JavaScript or jQuery and CSS. Upon completing this guide, you will have gained a comprehensive comprehension of how to execute this effect, and possess the skill to tailor it to your exact requirements. So, let's plunge into the depths and learn how to adjust opacity while scrolling through the page! Approach We are ... Read More
7K+ Views
Crafting a website that provides an optimal viewing experience across different devices can be a daunting and daring task. With a multitude of screen sizes and resolutions to take into notice, ensuring that your website is easily graspable and still be visually appealing on every device can be an uphill battle. Nevertheless, one important aspect of responsive web design that can aid in this is ammending the font size based on the width of the container. You can achieve this by using CSS units like "viewport width" (vw), "media queries" or jQuery plugins like FitText to produce text elements that ... Read More

2K+ Views
In this article, we will be discussing how to crop an image using canvas. When you crop an image, you essentially trim away parts of it to create a new image with a specific size or composition. This can be useful for various purposes, such as resizing an image to fit a specific frame or removing unwanted parts of an image. Approaches We have two different approaches to crop an image using canvas including the following − Using the “drawImage()” Using the “getImageData()” Let us look at each step in detail. Approach 1: Using the "drawImage() method" ... Read More

75 Views
!important in CSS used to specify styles that override any other styles that may have been previously assigned to an element. In this article, we will be discussing different methods to use !important in CSS. Approaches We have two different approaches to using !important in CSS as follows − Using the “Internal styling” Using the “Inline styling” Let us look at each step in detail. Approach 1: Using the "Internal styling method" The first approach is to use !important in CSS as “Internal styling”. You can add !important to a CSS property in an internal ... Read More

21K+ Views
To darken an image using CSS, we will be discussing three different approaches. In this article, we will understand how to apply a darkening effect to an image using CSS properties and methods such as overlaying a semi-transparent layer. We are having an image in this article, our task is to darken the image using CSS. We will be displaying the image before and after darkening. Approaches to Darken an Image Using CSS Here is a list of approaches to darken an image using CSS which we will be discussing in this article with stepwise explaination and complete example codes. ... Read More

5K+ Views
To create wave background using CSS, is a popular technique used to add a unique and dynamic visual element to web pages. We will be understanding two different approaches to create wave background using CSS. In this article, we are having a blank webpage and our task is to create wave background using CSS. Approaches to Create Wave Background Here is a list of approaches to create wave background using CSS which we will be discussing in this article with stepwise explaination and complete example codes. Wave Background Using SVG Wave ... Read More

829 Views
In this article, we will be creating a Wave Loader using CSS. Wave loader is a loading animation with a wave-like effect. It is a standard way for signaling progress in online applications, and it may enhance the user experience by indicating that material is being loaded. Making a CSS wave loader is a basic technique that uses CSS animation and keyframes. You may design a dynamic and aesthetically beautiful wave loader that can be adjusted to meet your individual demands by setting the animation attributes and keyframes. Approaches There are various techniques to employ CSS to create a ... Read More