Quantcast
Channel: Active questions tagged flexbox - Stack Overflow

How to maximize the space between characters/letters in a div (like with...

I've been Googling around but haven't found a way to make the letters in a div take up all the horizontal space available and maximize the space between them dynamically (like with CSS flex...

View Article


display:none not correctly working on mobile

there ho here's a CSS code, I want to hide it on PC view but visible on Phone view, I'm able to achieve my results on PC, but not on Phone, because display: none; is interfering with the code's work....

View Article


React component not getting rendered properly

I'm trying to create a React app where I have two components: (placed on the left) (should take the remaining space on the right)I want to use Flexbox to align both components horizontally, but for...

View Article

Automatic image height [duplicate]

How do I make the height of the image become the height of the block if the height of the block is not known in advance?I want to make the blocks with users look like:AAA James BondAAA 02.01.2001The...

View Article

Image may be NSFW.
Clik here to view.

Fill remaining vertical space with CSS using display:flex

In a 3-row layout:the top row should be sized according to its contentsthe bottom row should have a fixed height in pixelsthe middle row should expand to fill the containerThe problem is that as the...

View Article


Flex box background color cuts off at parent container width when using calc...

Trying to extend the background of the Flex box to go beyond its immediate parent boundaries, when scrolling. However, the background gets cut off at the width of the parent container.<div...

View Article

How to use React Native Animate to change view flex from 0 to 1

I have two views inside another view which has default flexDirection style so it is columnar. When the user clicks on an item in the bottom view (marked options below), I want the top view to animate...

View Article

How to vertically center text within a flexbox item? [duplicate]

I'm trying to vertically center text within a flexbox item. I've tried using align-items: center on the parent container, but the text isn't centering. My HTML structure is as followsI tried to apply...

View Article


Is it possible to make "flex-direction: row;" take up the full vertical space...

I have a parent div with 3 children in my .html sheet, and a .css sheet that mirrors this.I set the parent div to display the children as a row with flex (which i wanted), but i also want the height of...

View Article


Image may be NSFW.
Clik here to view.

Flex layout with two 'modes' [closed]

I want to have a layout that adjusts depending on two content profiles. Both have a close button in the upper right corner. The only difference is that the first has a title plus content, while the...

View Article

How to create an n x n grid of tiles with fixed container dimensions using...

I'm trying to create an n x n grid of tiles that fit within a fixed container (800px x 700px). I managed to generate the correct number of tiles using JavaScript, but I’m having trouble aligning them...

View Article

Image may be NSFW.
Clik here to view.

How do I get a flex wrap element to shrink when it starts wrapping

I have a row flex-wrap element with a gray background.When the screen can accomodate all the items in a single row the row only takes as much width as is needed by its childrenWhen the smaller screen...

View Article

Image may be NSFW.
Clik here to view.

React Native - Sticky footer at the bottom of container

I'm trying to make a <View> called footer stick at the bottom of the right container.Here is a live example:https://rnplay.org/apps/G3rHqQIf I make the left container higher than the right one...

View Article


Image may be NSFW.
Clik here to view.

How to make an match the dynamic height of a sibling in a flex container?...

I am having difficulties restricting the height of an img to the same height of an article that is positioned next to it.This is my HTML:section { display: flex;}article { display: flex;...

View Article

How to stretch children to fill cross-axis?

I have a left-right flexbox:.wrapper { display: flex; flex-direction: row; align-items: stretch; width: 100%; height: 70vh; min-height: 325px; max-height:570px; }.wrapper>.left { background: #fcc;...

View Article


Image may be NSFW.
Clik here to view.

flex-wrap Issue [duplicate]

I don't believe it is associated with this question as it seem to be referring to the wrapping that occurred in what is equivalent to my ka-chart-legend-item rows. Mine correctly do not wrap in those...

View Article

Image may be NSFW.
Clik here to view.

Aligning elements left, center and right in flexbox

I'm trying to create this top header using flexbox. Basically I would like to center the <div class="header-title"> (Institution institution 1) on the line with the 3 other elements you see....

View Article


Image may be NSFW.
Clik here to view.

How can I create a Masonry Layout in Elementor Pro using Flexbox or Grid?...

I'm building a testimonial wall using Elementor Pro. I have a parent container set to Flexbox with Direction: Row and Wrap: Yes. Inside this, there are multiple child containers (Single Testimonial...

View Article

Image may be NSFW.
Clik here to view.

How can I add a scrollable container inside a flex column layout?

I have a simple flex column layout and some CSS helper classes (I added everything to the runnable code snippet).Everything looks good......until I add a lot of text inside the red div./* Height...

View Article

Divs on the footer are not side by side

On my footer, I have some text at the top, then 2 divs that are supposed to be side by side, and another div at the bottom, centered. The 2 divs always show up one above the other, on the left side of...

View Article

How to make CSS Grid items stack tightly without gaps caused by varying...

How to make CSS Grid items stack tightly without gaps caused by varying heights?I have a parent grid container with 4 columns and 5 child divs:The first div has a list with fewer items (shorter...

View Article


Dynamically Resizing a GeoGebra Applet to Fill a Responsive Container

https://jsfiddle.net/ab7etkco/4/<!doctype html><html><head><script src="https://www.geogebra.org/apps/deployggb.js"></script><style> #wrapperDiv { width: 100%;...

View Article


Image may be NSFW.
Clik here to view.

How to avoid empty space in a flex flex-wrap container [duplicate]

I've created a div container, which includes a badges container and a more badge container. (See below).The badges container has display flex flex-wrap overflow hidden and a max-height. I have a hook...

View Article

How to create "collapsed" borders around flex items and their container?

I have the following layout:#limited-width { width: 100%; max-width: 200px; margin: 0 auto; font-size: 18px;}ul { display: flex; flex-flow: row wrap; list-style: none; padding: 0; margin: 20px;}ul >...

View Article

Why does this flex-container overflow?

I have a flex-container with a fractional pixel width with 8 flex-children. I expect the container to not overflow, but it does.The browser is Chrome or Edge on Windows. (Not in Firefox.)The container...

View Article


CSS - display:table with display:flex as sub-child div

I have a div with display:table;. In that div, I have 2 divs. 1 div has a width:100%, div2 has width:320pxIn div1 I have multiple rows, with each row having 3 divs max (some have 1 or 2). I am using...

View Article

Image may be NSFW.
Clik here to view.

Flex-basis=0 is supposed to override width, but it doesn't

I've read that flex-basis should override width. But in this example,both containers have flex-basis:0, but the second one also has width:50px defined and it clearly has an effect of making the size...

View Article

display flex - keeping last element in full width

I am trying to keep my 3d element with full width of the flex container. But not getting the result.Can anyone suggest me the right way for ie11 here?.parent{ border:1px solid red; display:flex;...

View Article

Image may be NSFW.
Clik here to view.

How can I skillfully use grid or flexbox to style this layout form

Here's what I'm trying to achieve:* { margin: 0; padding: 0; box-sizing: border-box;}body { background: #f1f6f5;}.context { font-family: "Sofia Sans", sans-serif; width: 370px; position: relative;...

View Article



How can we have a children element fill the height of its parent when not...

I have a menu consisting of ul and li simplified as below. I do not want to set a fixed height in px neither for ul or li. For the li I am using height:fit-content. The height of all the li might...

View Article


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>