
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

8K+ Views
In this article, we will be understanding the difference between CSS offsetWidth, clientWidth, scrollWidth and difference between offsetHeight, clientHeight, scrollHeight since they return width and height of HTML element respectively. CSS offsetWidth, clientWidth and scrollWidth offsetWidth: CSS offsetWidth property is the total width of the element, including the actual width, padding, border, and scrollbar in pixels. It doesn't include the margin in the width. It is an outer width of an HTML element. ... Read More

265 Views
If your app takes more than 3 seconds to load, you lose 50% of visitors. So, a slow-loading website can be frustrating for users, and they can navigate away from your site. However, there can be many causes for the slow website, but one of them is larger CSS files. In real applications, we need to write lots of CSS to style different web pages. So, we can minify the CSS files to reduce the size of CSS files. When we minify the CSS files, it removes the whitespaces, comments, etc., from the file, decreasing the size of the CSS ... Read More

1K+ Views
As the name suggests, the meaning of the liquid layout is flooding layout. It changes the dimensions of the HTML elements according to the screen dimensions. Whenever we use the hard-coded dimension values for HTML elements, it creates a fixed layout with a 90% chance of overflow. So, it is best practice to use a liquid layout so the web can be compatible with every device. In this tutorial, we will learn to create a liquid layout using CSS. Syntax Users can follow the syntax below to create a liquid layout in CSS. Selector_1 { Width: 60%; ... Read More

794 Views
Nowadays, creating cards on a website is very important to show various data on the website. For example, on the home page of TutorialsPoint’s website, you will find different courses in the card format, and when you click on the card, it redirects you to the particular page of the course. Furthermore, if you go to any e-commerce store such as Amazon or Flipkart, they show products in the card format. The main benefit of creating a card is that we can show short information about the product with an image and full information on the product page. In this ... Read More

2K+ Views
Nowadays, creating Neon text on the web page is a trend to make it attractive. We can create a Neon text on the web page to generate an eye-catching effect and draw a user’s attention towards the important information that the web page contains. We can use neon texts with logos, heading, advertisements, etc., to highlight them. In this tutorial, we will customize the values of the text-shadow CSS property to create neon text. Syntax Users can follow the syntax below to create neon text using HTML and CSS. text-shadow: 0 0 1.5rem white; We used the ‘text-shadow’ CSS ... Read More
236 Views
In the domain of web development, utilizing cascading style sheets (CSS) effectively is imperative in the creation of visually pleasing and user-friendly websites. One often neglected but essential aspect of CSS is the "word-break" attribute, which is significant in preserving legibility and aesthetic appeal. The "word-break" property bestows upon developers the ability to regulate how words are exhibited and formatted in a particular block element. Through the application of this attribute, developers can guarantee that words are separated and carried over to the next line in a manner that is both visually appealing and comprehensible. This manuscript delineates a systematic ... Read More
5K+ Views
To create a two column layout using flexbox can be so easy if you have the knowledge of CSS display property. Flexbox is a layout model in CSS that provides an efficient and flexible way to arrange and distribute space between items within a container. It arranges elements in a single dimension, either horizontally or vertically, within a container. To know more about the CSS Flexbox Layout visit the attached link. Imagine we have parent div and inside that div we have two child div all we have to do is place those child div side by horizontally. Ways to ... Read More
118 Views
Cognizant of the importance of user experience in the realm of the internet, creators and programmers are ceaselessly seeking innovative means to augment the visual allure of digital content. One such feature that necessitates attention is the contour of the edges in the user interface components. The capacity to regulate and enliven the curvature of edges through Cascading Style Sheets (CSS) can greatly enhance the beauty and utility of a webpage. In this discourse, we shall delve into the intricacies of shaping edges in a manner that can be animated using CSS, imparting to web craftsmen the expertise and implements ... Read More
185 Views
In the realm of web engineering, producing visually pleasing and systematically structured listings is crucial for heightening the end-user experience. Nevertheless, specifying each individual list attribute within CSS can be a tedious and time-consuming chore for developers. Thankfully, there is a solution to this predicament: determining all list attributes in one statement through CSS. By utilizing this methodology, developers can simplify their work process and fabricate more efficient and standardized code. Within this manuscript, we will scrutinize the gradual procedure of determining all list attributes in one statement via CSS, accentuating the diverse parameters and attributes attainable within the CSS ... Read More

2K+ Views
There are various selectors in CSS out of all those selectors, so use :not(:first-child) selector. We can very easily achieve this using the :not and :first-child selectors in a combination. For example, if you want to select all paragraphs except the first one that are inside a div element, you can use div :not(:first-child) selector. In this article, we will learn how to use the :not(:first-child) selector in CSS. We will explore the different methods to use a :not(:first-child) selector. Different Approaches to use :not(:first-child) Selector There are different ways to use a use :not(:first-child) selector in ... Read More