Eesha Gandhi

Eesha Gandhi

46 Articles Published

Articles by Eesha Gandhi

Page 5 of 5

How to Reduce Space Between Elements on a Row in CSS Bootstrap?

Eesha Gandhi
Eesha Gandhi
Updated on 15-Mar-2026 1K+ Views

Bootstrap's grid system creates automatic spacing (called "gutters") between columns using padding and margins. Sometimes you need to reduce or remove this space to create tighter layouts. Here are several methods to control spacing between elements in Bootstrap rows. Method 1: Using no-gutters Class The simplest method is to add the no-gutters class to your row. This removes all gutters between columns − Bootstrap No Gutters Example Regular Row (with gutters) ...

Read More

HTML Docs Not Updating from CSS

Eesha Gandhi
Eesha Gandhi
Updated on 15-Mar-2026 608 Views

When working with HTML and CSS, a common issue is when CSS styling doesn't reflect in your HTML document despite being properly linked. This problem is particularly frequent in Django web applications where static files need special handling. Common Causes and Solutions Issue 1: Incorrect MIME Type The most common mistake is using an incorrect type attribute in the link tag − ...

Read More

How to Create StopWatch using HTML CSS and JavaScript ?

Eesha Gandhi
Eesha Gandhi
Updated on 15-Mar-2026 6K+ Views

To create a stopwatch using HTML, CSS, and JavaScript, we need a basic understanding of these three technologies. HTML creates the structure, CSS styles the interface, and JavaScript adds the functionality for timing operations. In this tutorial, we will create a stopwatch with Start, Stop, and Reset functionality − Creating Structure of Stopwatch using HTML We use a structured approach with div elements to organize our stopwatch components − The outer align div centers the stopwatch on the screen The container div holds all stopwatch elements ...

Read More

What are the new types introduced in HTML for input type?

Eesha Gandhi
Eesha Gandhi
Updated on 12-Sep-2023 449 Views

There are a number of new HTML5 form input types, 13 to be exact, that make it much easier for web designers to create engaging and user-friendly web forms. In web browsers that support them, the new HTML5 input types provide data validation, date picker controls, colour picker controls, inline help text, and other features. Input types provided by HTML5 In this article we will take a look at all of the new form input types and some examples to demonstrate their usage. The colour input type allows the user to choose a colour from a colour picker and ...

Read More

What are the Significant Goals of the HTML5 Specification?

Eesha Gandhi
Eesha Gandhi
Updated on 12-Sep-2023 630 Views

The World Wide Web uses HTML5 as a markup language to organize and display content. It was the first HTML update in 14 years, and it was approved in 2014. In today's world, that's a lifetime between updates. It is the fifth and final major HTML version recommendation issued by the World Wide Web Consortium. The current specification is indeed the HTML living specification. It now includes support for multimedia, audio, video, tags and elements, improved document markup, and new APIs. HTML5's primary goal is to make it easier for web developers and browser designers to adhere to consensus-based standards ...

Read More

How to Use the \"required\" Attribute on the select Element in HTML5

Eesha Gandhi
Eesha Gandhi
Updated on 12-Sep-2023 2K+ Views

The HTML select element represents a control that displays a menu of options. It is used to make drop-down menus so users can choose the value they want. It is a useful feature for gathering data to be sent to a server. The tag is typically used within a form element, with the items to be chosen coded within another tag, . It can also be used as a stand-alone element that is associated with a form via one of its special attributes, . The tag in HTML is associated with numerous attributes. They are discussed below. ...

Read More
Showing 41–46 of 46 articles
« Prev 1 2 3 4 5 Next »
Advertisements