Front End Technology Articles

Page 478 of 652

How to align an item set to its default value in CSS?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 963 Views

In CSS, aligning an item to its default value means ensuring that the item maintains the alignment specified by the parent container's align-items property. The default value for align-items is stretch, but you can set it to other values like center, flex-start, and so on. Syntax /* For container-level alignment */ .container { align-items: stretch; /* default value */ } /* For individual item alignment */ .item { align-self: auto; /* inherits from parent */ } /* For inline/table-cell elements */ .element { ...

Read More

How to Add Image into Dropdown List for each items?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 8K+ Views

Adding images to dropdown list items enhances the visual appeal and user experience of your web application. This technique uses HTML structure combined with CSS hover effects to create an interactive dropdown menu where each option displays both an icon and text. Syntax .dropdown:hover .dropdown-content { display: block; } .dropdown-content a:hover { background-color: color; } Example: Car Selection Dropdown The following example creates a dropdown menu with car brands, each accompanied by a representative icon − ...

Read More

How to apply two CSS classes to a single element?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 2K+ Views

We can apply multiple CSS classes to a single element by using the class attribute and separating each class with a space. This allows us to combine different styles and create more flexible, reusable CSS designs. Syntax /* Multiple classes in HTML */ ... /* CSS styles for each class */ .class1 { property: value; } .class2 { property: value; } .class3 { property: value; } Method 1: Using the Class Attribute The most common way to apply multiple classes is by listing them in the class attribute, separated by spaces − ...

Read More

How to add multiple font files for the same font using CSS?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 14K+ Views

When creating web pages, using multiple font files for the same font family ensures optimal display across different browsers and devices. Some browsers support .woff files while others work better with .ttf or .eot formats. Syntax @font-face { font-family: 'FontName'; src: url('font.woff2') format('woff2'), url('font.woff') format('woff'), url('font.ttf') format('truetype'); } Method 1: Using @font-face Rule The @font-face rule allows you to define custom fonts with multiple file formats as fallbacks. ...

Read More

How to add icons in the button in HTML?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 16K+ Views

Icons in HTML buttons help improve user experience by providing visual cues about the button's function. This guide covers two popular methods for adding icons to buttons using modern approaches. Syntax /* Method 1: Font Icons */ button { font-family: icon-font; } /* Method 2: Background Images */ button { background-image: url(icon.png); background-repeat: no-repeat; background-position: center; } Method 1: Using Font Icon Libraries Font libraries like Font Awesome provide scalable vector icons that can be easily styled ...

Read More

How to add gradients to your project using CSS?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 502 Views

CSS gradients are smooth transitions between two or more colors that add visual depth and interest to your web designs. They can create backgrounds, textures, and enhance the overall appearance of elements without requiring images. Syntax /* Linear Gradient */ background: linear-gradient(direction, color1, color2, ...); /* Radial Gradient */ background: radial-gradient(shape size at position, color1, color2, ...); Method 1: Using Linear Gradient Linear gradients create smooth color transitions in a straight line. You can control the direction and specify multiple color stops to achieve various effects. Example: Basic Linear Gradient The ...

Read More

How to add Full-Screen Background Video using Tailwind CSS?

Diksha Patro
Diksha Patro
Updated on 15-Mar-2026 7K+ Views

To add full-screen background video using Tailwind CSS, we utilize specific utility classes that control video positioning, sizing, and display properties. Adding a full-screen background video enhances user experience and creates visually engaging web interfaces. Syntax /* Basic full-screen video structure */ .video-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; z-index: -1; } .video-element { width: 100%; ...

Read More

What is contextual selector in CSS?

Tanmay Chandhok
Tanmay Chandhok
Updated on 15-Mar-2026 2K+ Views

Contextual selectors allow developers to apply styles to elements based on their position within the HTML document structure. These selectors target elements that exist within a specific context or parent-child relationship, giving you precise control over styling without affecting similar elements elsewhere on the page. Syntax parent-selector descendant-selector { property: value; } The contextual selector consists of two or more selectors separated by a space, where the last selector is the target element and the preceding selectors define its context. Example 1: Basic Element Selection First, let's see what ...

Read More

Making a Div vertically scrollable using CSS

Tanmay Chandhok
Tanmay Chandhok
Updated on 15-Mar-2026 708 Views

Making a div vertically scrollable is essential when content exceeds the container's height, preventing layout disruption and maintaining website responsiveness. This technique allows users to scroll through content within a fixed−height container. Syntax selector { overflow: value; /* or for specific axes */ overflow-x: value; overflow-y: value; } Possible Values ValueDescription visibleContent overflows the container (default) hiddenContent is clipped, no scrollbar scrollAlways shows scrollbar autoShows scrollbar only when needed Method 1: Using overflow-y Property ...

Read More

Is it possible to prevent the users from taking screenshot of webpage?

Tanmay Chandhok
Tanmay Chandhok
Updated on 15-Mar-2026 20K+ Views

While browsing the internet, users might need to capture screenshots to share information. However, webpages containing sensitive content may require protection from unauthorized screenshots. Though complete prevention is impossible, CSS provides several techniques to discourage screenshot attempts. Why Screenshot Prevention is Limited Screenshot functionality is controlled by the operating system − Windows (Win + PrtScn), macOS (Cmd + Shift + 3), and mobile devices all have built-in screenshot capabilities. Web technologies like HTML, CSS, and JavaScript cannot override these OS-level functions. However, we can implement deterrent measures using CSS properties. Method 1: Hiding Content During Print ...

Read More
Showing 4771–4780 of 6,519 articles
« Prev 1 476 477 478 479 480 652 Next »
Advertisements