Harshit Sachan has Published 37 Articles

10 CSS Functions every Front-end Developer should know

Harshit Sachan

Harshit Sachan

Updated on 17-Feb-2023 14:15:58

520 Views

CSS (Cascading Style Sheets) is a stylesheet language used for describing the look and formatting of a document written in HTML. It is a crucial part of web development, as it allows developers to control the appearance of their websites and applications. In this article, we will be discussing some ... Read More

How does auto property work in margin: 0 auto in CSS?

Harshit Sachan

Harshit Sachan

Updated on 17-Feb-2023 14:14:56

2K+ Views

The "margin: 0 auto" property is a commonly used CSS property that allows developers to horizontally center elements within their container. The "auto" value for the margin property is what enables this centering to occur. In this article, we will look into how the "auto" value works in the margin ... Read More

How to specify no border in CSS

Harshit Sachan

Harshit Sachan

Updated on 17-Feb-2023 14:10:29

2K+ Views

Borders can be a useful design element for adding definition and structure to your web pages. However, there may be times when you want to remove the border from an element or prevent a border from being applied in the first place. In this article, we will show you ... Read More

How to remove input background on select in CSS

Harshit Sachan

Harshit Sachan

Updated on 17-Feb-2023 11:34:16

4K+ Views

The default styling for HTML form elements can often be somewhat dull and uninspiring. One element that is often in need of a design overhaul is the select input, which is used to present users with a list of options to choose from. In this article, we will show you ... Read More

Python program to print even numbers in a list

Harshit Sachan

Harshit Sachan

Updated on 13-Oct-2022 12:03:38

10K+ Views

Python Programming Language is one of the most efficient and user-friendly programming language and have endless uses and applications. Lists declared in Python are analogous to dynamically sized arrays in other programming languages (vector in C++ and ArrayList in Java). A list is simply a collection of items enclosed by ... Read More

Python program to print even length words in a string

Harshit Sachan

Harshit Sachan

Updated on 13-Oct-2022 11:58:05

5K+ Views

In Python Programming Language, Length is the concept of calculating the entire range of the string that begins from the first character of the string till the last character of the string. Printing and calculating even length in a string is a basic exercise in the programing language. In ... Read More

Class & Instance Attributes in Python

Harshit Sachan

Harshit Sachan

Updated on 13-Oct-2022 11:52:51

1K+ Views

In Python Programming Language, Class and Instance are two of object orientation's most crucial ideas. Instances are unique objects made in accordance with the class, whereas classes are templates. The procedure is the same for all objects, although the data may vary. In this tutorial, we will learn about ... Read More

Advertisements