
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

13K+ Views
To set the limit of text length to n lines, it can help in more organized presentation of text and better readability. This process is also known as truncating. In this article we will be understanding diifferent approaches to truncate the text. In this article, we are having a div element with some text content in it. Our task is to limit the text length to N lines using CSS. Approaches to Set the Limit of Text Length to N Lines Here is a list of approaches of how to Set Color of Progress Bar using HTML and CSS with ... Read More

6K+ Views
To make a div horizontally scrollable we will need to use the CSS overflow property. In this article we will show all the possible ways to make div horizontally scrollable. First, let’s understand why we need to make a div horizontally scrollable. For example, the width of the parent div element is 500px, or the screen size is 500px. Now, the content of the div element is 1500px. So, if we don’t make the parent div horizontally scrollable, it breaks the UI of the application. So, we can make it scrollable, and users can scroll to see the invisible ... Read More
486 Views
Nested accordion menus are an effective way to organize and present large amounts of information in a compact and intuitive manner. With the growing importance of mobile devices in accessing the internet, it has become increasingly important to optimize web pages for faster loading and improved user experience. This is where the Google Accelerated Mobile Pages (AMP) project comes into play, offering a streamlined and fast-loading way of creating web pages for mobile devices. In this article, we will explore how to create nested accordion menus using Google AMP’s amp-accordion component, providing a clear and organized way to present complex ... Read More
2K+ Views
Parallax scrolling is a frequently employed design technique that adds a sense of movement and depth to web pages. This is accomplished by moving separate page elements at distinct speeds to simulate the effect of depth on a flat surface. A unique and imaginative approach to implementing this technique is to utilize numerous background images in CSS. In this article, we will be exploring how to create a multiple background image parallax effect in CSS, including the steps to set up the HTML structure and the CSS styling needed to create the desired effect. Whether you are a beginner or ... Read More

2K+ Views
CSS, or Cascading Style Sheets, is a powerful tool that provides a range of effects to create beautiful, dynamic web pages. One of the most important tools in the CSS is the ability to rotate elements. Rotating elements, create a unique designs and animations that capture users' attention and help communicate the message. Here, we will explore how to set a rotated element's base placement in CSS. Transform Property in CSS The Transform property allows to apply various transformations to elements, including rotation, scaling, and skewing. When a transform is applied to an element, the base location of the element ... Read More

227 Views
CSS has developed from simple style sheets to a powerful language that can create complex and intricate layouts and designs. One of the most exciting features of CSS is to create 3D elements on web pages. With CSS 3D transforms, we can now create attractive 3D effects that were once only possible with JavaScript or Flash. In this article, we will take a look at how to set a 3D element's base placement in CSS. We will also explore the basics of CSS 3D transforms and how to use them to create a simple 3D element. What are CSS 3D ... Read More

6K+ Views
To select text input fields using CSS selector, is a powerful and crucial tool for styling and targeting the specific elements on the webpage. Text input fields are an essential part of any web form that requires users to provide input. In this article, we are having three input fields. Out of three. two input fields are of text input type and remainig one is if password input type. Our task is to select text input fields using CSS selector. Aproaches to Select Text Input Fields Here is a list of approaches to select text input fields using CSS selector ... Read More

9K+ Views
To rotate container background image using CSS, is a powerful tool to control and enhance the visual presentation of a website. In this article, we will be understanding three different approaches to rotate container background image Using CSS. We are having a background image in a div container, our task is to rotate container background image using CSS. Approaches to Rotate Container Background Image Using CSS Here is a list of approaches to rotate container background image using CSS which we will be discussing in this article with stepwise explaination and complete example codes. Rotate ... Read More

2K+ Views
The HTML input tag is a powerful tool that allows developers to create dynamic web pages. One useful feature of the input tag is the ability to select multiple files at once. HTML input tag is a commonly used element for creating web forms and enabling users to interact with web applications. One of the most common use cases for input tags is a file selection where a user can choose one or more files to be uploaded. The input tag in HTML has various attributes that allow us to customize the behavior of the tag. The most commonly used ... Read More

3K+ Views
CSS (Cascading Style Sheets) is an essential tool for web developers to enhance the visual looks of the web pages. With CSS, we can customize the layout, color scheme, and typography of the website. CSS provides multiple ways to target and style specific HTML elements based on their attributes. One of the most useful and powerful methods to select elements is by using data attributes. What are data attributes? Data attributes are HTML attributes that provide additional information about an element, that information is not visible to the user but can be accessed by scripts or CSS. These attributes begin ... Read More