align the bottom of nested columns using Bootstrap 4

Struggling to create a form using bootstrap 4, encountering an issue with aligning one column at the bottom:

https://i.sstatic.net/y0BA7.png

Here is the code snippet:

<div class="col-md-3 m-2">
  <div class="row">
    <div class="col-12 d-flex flex-column border border-primary bg-light rounded form-group h-100">
      <h3>text</h3>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
    </div>
    <div class="col-12 border border-primary bg-light rounded form-group h-100 col align-self-end">
      <h3>bottom box</h3>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
      <div class="form-group">
        <label for="i1">i1</label>
        <input type="text" class="form-control" name="i1" id="i1" placeholder="i1" value="223108853">
      </div>
    </div>
  </div>
</div>

https://jsfiddle.net/rotor82/c7ugmsw8/3/

Troubleshooting the alignment issue, attempted to use align-self-end, but no success so far.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Display a div beside it when hovering over a specific part of the image

If I have an image that is 200px wide and 900px tall How can I make a div display alongside it when hovering over a specific section of the image? ...

Crafting interactive image checkboxes

At present, the checkboxes in my application are quite basic with labels. However, our app designer has requested that we revamp this feature and make it more appealing by using clickable images that still function like checkboxes. Allow me to provide an ...

How can I automatically center a Vimeo iframe vertically without having to manually adjust the position?

I'm trying to adjust a popular fluid jQuery script so that it can automatically center a vimeo video vertically, without any black bars. A little horizontal cropping is acceptable. Here is my current code: HTML <div class="container"> < ...

Updating the appearance of selected radio buttons with CSS

Here is the code I am using to create a toggle switch instead of radio buttons, and it works great: .switch { display: block; float: left; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; font-weight: bold; ...

What is the best way to integrate a Next.js Image component with a set width and an adaptable height in order to maintain the image's proportions?

This code snippet uses ChakraUI styling and retrieves images from SanityCMS: <Box w="500px" h="500px" bg="red"> <Image src={allArtPieces[0].imageUrl} alt={allArtPieces[0].title} width="500px" ...

Tips for adding a border-bottom a few pixels underneath a list item:

I'm working with a menu that has dynamic content. When a user clicks on a li tag, it receives the class "active". I want to show which class is active by adding a border-bottom to it, but I want the border-bottom to be positioned 5px under the li tag ...

Incorrect Pixel Width with Relative Positioning in Internet Explorer 11

I'm encountering a positioning problem that seems to be specific to Internet Explorer (11). I'm attempting to absolutely position a div tag in relation to another element. The problematic code snippet appears as follows: <div id="FacebookWra ...

Begin expanding new circles in jQuery from the exact location where the previous ones ended

A captivating circle animation unfolds before your eyes, featuring dark blue circles that materialize at random points and gradually expand. As these expanding circles cover more than half of the screen, their color shifts to a lighter shade of blue. Exper ...

Why isn't the sticky element moving up along with its sibling element when scrolling?

This is an additional query related to my previous question How can I make an element sticky but scrollable to its full (variable) height with a sibling element? The issue at hand is that the right sidebar does scroll to its full available content and th ...

Cursor hovers over button, positioned perfectly in the center

I am facing a challenge with implementing a hover function for a set of buttons on the screen. The goal is to display the mouse pointer at the center of the button upon hovering, rather than the actual position of the cursor being displayed. I have tried u ...

JavaScript-based Dropdown Menu Selection Without Relying on jQuery

I am currently utilizing a Bootstrap 4 navbar that includes a dropdown menu for selecting different languages. I am able to display the selected option using jQuery, but now I am seeking a way to achieve this without relying on jQuery. Below is the curren ...

"Troubleshooting a Animation Problem in the Latest Version of

I have discovered an issue with animations on the latest version of Firefox Quantum. Upon loading a page with certain animated elements set to display: none;, when a script changes it to .display = "block";, some parts of the animation may be missed or no ...

What are some effective strategies for incorporating multiple Themes into an AngularJS project?

Currently, I am in the process of working on a project that involves utilizing AngularJS, UI Bootstrap, and Sass. The next step is to incorporate different themes that can be selected by the user. While I have successfully implemented the ability to apply ...

The browser fails to display the canvas when using the fillRect function

As a novice in Canvas, I've been experimenting with some code, but unfortunately, it's not working for me. Here's the code I used. Can someone help me identify the issue? <!DOCTYPE html> <html> <head> <title> 28 ...

Use vertical gaps to separate items by applying the following technique:

One of my components is designed to act as a badge. The CSS for this component includes: https://i.sstatic.net/F0QZ6.png HTML: <div class="label label-as-badge"> {{ value.Termo }} <i class="fa fa-times"></i ...

What is the method for identifying the name of a CSS Variable currently in use?

Consider this code snippet: /* css */ :root { --text-color: #666666; } input { color: var(--text-color); } In Javascript, how can I determine the name of the CSS custom property (variable) being utilized? // javascript console.log(document.querySel ...

What are the best practices for implementing media queries in Next.js 13.4?

My media queries are not working in my next.js project. Here is what I have tried so far: I added my queries in "styles.module.css" and "global.css" and imported them in layout.js I included the viewport meta tag under a Head tag in layout.js This is how ...

The specified height for input[type=button] in Firefox/Safari is adjusted by subtracting the padding and border

When implementing the following CSS: input[type=button] { background-color: white; border: 1px solid black; font-size: 15px; height: 20px; padding: 7px; } along with this HTML: <input type="button" value="Foo" /> I anticipate that the t ...

Prevent scrollbar from appearing while splash page loads

Looking for help with a script to create a splash/intro page loader. $(function(){ setTimeout(function() { $('#splash').fadeOut(500); }, 6000); }); The current script hides the intro page after 6 seconds, ...

Bootstrap cards have a fixed width and do not wrap

I've been diving into Django and although I'm fairly new to CSS, I managed to put together a page displaying various products using Bootstrap cards. https://i.sstatic.net/xme5m.png It appears that my code should have wrapped these cards pr ...