flexbox

Flexbox align-self property not transitioning?

孤街浪徒 提交于 2021-02-08 18:45:26
问题 I've tried creating a morphin "button", which slides on a further menu. The idea was based on Codrops Morphing Buttons Concept Now It's almost set up and there are only 2 minor things that annoy me: When "closing" the menu the buttons drop to the bottom immidiately although I've set the align-items property in the transition. Does Flexbox not support transition on said property? The glyphicon doesn't adjust itself with align-items and justify-center therefore I've had to get it done dirty by

Flexbox align-self property not transitioning?

北城以北 提交于 2021-02-08 18:33:06
问题 I've tried creating a morphin "button", which slides on a further menu. The idea was based on Codrops Morphing Buttons Concept Now It's almost set up and there are only 2 minor things that annoy me: When "closing" the menu the buttons drop to the bottom immidiately although I've set the align-items property in the transition. Does Flexbox not support transition on said property? The glyphicon doesn't adjust itself with align-items and justify-center therefore I've had to get it done dirty by

Flexbox align-self property not transitioning?

家住魔仙堡 提交于 2021-02-08 18:29:24
问题 I've tried creating a morphin "button", which slides on a further menu. The idea was based on Codrops Morphing Buttons Concept Now It's almost set up and there are only 2 minor things that annoy me: When "closing" the menu the buttons drop to the bottom immidiately although I've set the align-items property in the transition. Does Flexbox not support transition on said property? The glyphicon doesn't adjust itself with align-items and justify-center therefore I've had to get it done dirty by

Left sticky columns disappear when scrolling horizontally mat-table with too many columns are present

一曲冷凌霜 提交于 2021-02-08 09:53:42
问题 When scrolling horizontally mat-table, row does not expand to the end of column, just columns that are present on the screen. Because of that, when horizontal scrolling to the right, when mat-row goes out of screen, left sticky columns also leaves (see black border that are present on bottom of mat-row). Url example link: https://stackblitz.com/edit/angular-ddqxvn Is it possible to expand mat-row to all columns (even does that are out of screen), which will keep sticky columns on the left. I

Left sticky columns disappear when scrolling horizontally mat-table with too many columns are present

笑着哭i 提交于 2021-02-08 09:53:41
问题 When scrolling horizontally mat-table, row does not expand to the end of column, just columns that are present on the screen. Because of that, when horizontal scrolling to the right, when mat-row goes out of screen, left sticky columns also leaves (see black border that are present on bottom of mat-row). Url example link: https://stackblitz.com/edit/angular-ddqxvn Is it possible to expand mat-row to all columns (even does that are out of screen), which will keep sticky columns on the left. I

Can I create a multi-column CSS page that wraps words based on page and column size?

可紊 提交于 2021-02-08 09:16:59
问题 I'm trying to create a page in CSS that looks like an old newspaper. My page should be responsive, and only have one column of text on small devices, but that is mostly irrelevant to the problem I'm asking for help with. On larger screens, the page should have either 2 or 3 columns, depending on the screen width. I'm able to achieve this with CSS columns... however, I would like to further complicate things by having the CSS columns wrap per page (defined as 100vh). My criteria are: Text

Can I create a multi-column CSS page that wraps words based on page and column size?

廉价感情. 提交于 2021-02-08 09:16:26
问题 I'm trying to create a page in CSS that looks like an old newspaper. My page should be responsive, and only have one column of text on small devices, but that is mostly irrelevant to the problem I'm asking for help with. On larger screens, the page should have either 2 or 3 columns, depending on the screen width. I'm able to achieve this with CSS columns... however, I would like to further complicate things by having the CSS columns wrap per page (defined as 100vh). My criteria are: Text

Make the longest content item set the width for the entire column

徘徊边缘 提交于 2021-02-08 08:45:18
问题 As you can see in the snippet I've applied to this question, the alignment is ruined because the different divs have different width based on the text inside of them. I want the biggest div's width of each column to be determined by the length of the text inside of it and have all the rest of the divs to take that width. I don't want to hardcode any width and I can't alter the HTML structure too much. I want the end result to be something like this: Is there anything that can be done .match {

Flex box rendering like a column when it should be a row

心已入冬 提交于 2021-02-08 05:39:17
问题 I am putting together what should be a simple nav bar and styling with flex box. For some reason, instead of displaying as a row (horizontal), it is showing as a column (vertical). I can make the links go horizontal using float:left, but then they don't stretch evenly to fill the nav bar. My understanding is that flex-grow:1 should make each item occupy an equal amount of space. But this is not happening. There are four declarations that are not working as expected: flex-direction The links

Opinions Needed for a Responsive Four-Column Layout Flexbox

余生长醉 提交于 2021-02-08 04:38:45
问题 I created a responsive four-column layout by using a mobile-first approach. The smallest screen shows 1 column, the larger screen 2 columns, and the largest screen 4 columns. It seems to work so far, but I'd like you to take a look at my code and tell me if there's anything wrong with my approach. I would be grateful for your opinions. <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>FlexBox Test<