AmitDiwan has Published 11365 Articles

How to create a responsive portfolio gallery grid with CSS?

AmitDiwan

AmitDiwan

Updated on 14-Dec-2023 11:27:12

428 Views

If you are a shutterbug and loves photography, you would love to display it on a website for sure. For that, grids are created for the gallery that also works on different devices. The responsiveness can also be set easily. Let us see how to create a responsive portfolio gallery ... Read More

What is Pseudo-element in CSS

AmitDiwan

AmitDiwan

Updated on 14-Dec-2023 11:24:35

90 Views

A CSS Pseudo-element is basically a selector for specific parts of an element such as first-letter, first-line, etc. the :after and :before pseudo elements can be used to insert after and before an element respectively. Syntax Following is the syntax for using CSS Pseudo elements on an element − ... Read More

Vertical Text, with Horizontal Letters in CSS

AmitDiwan

AmitDiwan

Updated on 14-Dec-2023 11:17:03

969 Views

On a web page, you may need to set a vertical text and that too with horizontal letters. By specifying the text-orientation: upright and writing-mode: vertical-rl, we can display vertical text with horizontal CSS. Syntax The syntax of CSS writing-mode and text-orientation property is as follows − Selector ... Read More

How to create a responsive login form with CSS?

AmitDiwan

AmitDiwan

Updated on 14-Dec-2023 11:11:35

2K+ Views

On a web page, a login form consists of fields for username and password. Also, a login button is created for the users to click on the button and login. A forgot password link is also placed for the users who forgot their account password. With that, “Remember Me” checkbox ... Read More

How to create a responsive inline form with CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:53:28

3K+ Views

A responsive inline form is a form in which all the elements are inline, aligned on the left, with the specific labels. To display the responsiveness i.e., when the web browser is resized, we have set the inline form to stack all the input fields on top of each other. ... Read More

How to create a responsive image with CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:50:54

476 Views

To create a responsive image, first set an image using the element. Use the width and max-width properties to set the same image to a responsive image. Set an image To set an image on a web page, use the element. The link of the image is included ... Read More

How to create a responsive Image Grid with HTML and CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:49:39

5K+ Views

The image grid on a web page displays images in a grid. In an outer grid, we can create inner grids. Also, the responsiveness needs to be set for the image grid for different devices. On a web browser, check the responsiveness by resizing the web browser. Let us see ... Read More

How to create a responsive header with CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:47:46

3K+ Views

On a web page, first the header is visible, then the content, and at the end the footer. A header includes the logo of the website and the menu. It can also include a search box on the right. The menus are created using the element. The selected link ... Read More

How to create a responsive form with CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:45:17

4K+ Views

A form on a web page can be used to get the user details for registration such as name, username, email-id, password, security question, etc. With that, a form can be created to get only the user details such as name, email-id, phone number, message, etc. as a contact us ... Read More

How to create a responsive cutout/knockout text with CSS?

AmitDiwan

AmitDiwan

Updated on 08-Dec-2023 16:41:16

143 Views

A responsive knockout text transforms when the web browser size is changed. A knockout text looks like it's been cut out of a surface to reveal the background. First, we will place a background image on the web page using the background-image property. The text will be placed using the ... Read More

Advertisements