Dynamically changing div alignment inside a flexboxHow to horizontally center a <div>?How to align checkboxes and their labels consistently cross-browsersHow to make div not larger than its contents?Vertically align text next to an image?How to align content of a div to the bottom?How to make a div 100% height of the browser window?Change an HTML5 input's placeholder color with CSSClick through div to underlying elementsHow to vertically align an image inside a div?In CSS Flexbox, why are there no “justify-items” and “justify-self” properties?

How should I push back against my job assigning "homework"?

Is it possible to kill all life on Earth?

Imperfective Aspect in German in "not since" constructions

Is there a way to save this session?

Humans meet a distant alien species. How do they standardize? - Units of Measure

Applicants clearly not having the skills they advertise

Can those paralyzed by the Hold Person spell be forcibly moved?

Are there practical reasons to NOT use a stepper motor with lead screw for the X and or Y axes?

How can I grammatically understand "Wir über uns"?

Accidentally cashed a check twice

Creating Fictional Slavic Place Names

Rotated Position of Integers

Will dual-learning in a glider make my GA learning safer?

How do I get a cleat that's stuck in a pedal, detached from the shoe, out?

Is it a problem that pull requests are approved without any comments

Can I ask a publisher for a paper that I need for reviewing

California: "For quality assurance, this phone call is being recorded"

What if you don't bring your credit card or debit for incidentals?

Topological spaces which are not pseudometrizable.

Filling region bounded by multiple paths

Why were the Night's Watch required to be celibate?

Why is there a need to modify system call tables in Linux?

Why is Colorado so different politically from nearby states?

How can a single Member of the House block a Congressional bill?



Dynamically changing div alignment inside a flexbox


How to horizontally center a <div>?How to align checkboxes and their labels consistently cross-browsersHow to make div not larger than its contents?Vertically align text next to an image?How to align content of a div to the bottom?How to make a div 100% height of the browser window?Change an HTML5 input's placeholder color with CSSClick through div to underlying elementsHow to vertically align an image inside a div?In CSS Flexbox, why are there no “justify-items” and “justify-self” properties?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















I have a <ul> element as flex container with row direction. Each <li> element has a menu contained inside a div, that opens up towards the right when some event occurs.



The problem, is that from some <li> onwards, the menu flows outside the right side of the flex container boundaries.



What I want, is that the menu will know when to stretch rightward from its parent <li>, and when to stretch leftward, depending on whether enough space is still available on the right or not.



This is a skeleton of the problem scope:



<ul style="display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start;">
<li ng-repeat="items-in-some-source">
<div>
<!-- some stuff -->
<div>
<!-- some other stuff -->
</div>
<div style="position:relative;" ng-include="some-menu-template.html"></div>
</div>
</li>
</ul>


This is the expected result, with menu closed on the top row, and some examples with an open menu on the following rows. Note how the <li id=D> element behaves, and also note that the number of <li> elements is dynamic:



enter image description here



This is what happens now, notice how <li id=D> overflows the flex container:



enter image description here



So, is there any way to achieve this using just css? I prefer not to use a Javascript solution for this.










share|improve this question
























  • can you add a snippet / fiddle too?

    – kukkuz
    Mar 24 at 12:21

















2















I have a <ul> element as flex container with row direction. Each <li> element has a menu contained inside a div, that opens up towards the right when some event occurs.



The problem, is that from some <li> onwards, the menu flows outside the right side of the flex container boundaries.



What I want, is that the menu will know when to stretch rightward from its parent <li>, and when to stretch leftward, depending on whether enough space is still available on the right or not.



This is a skeleton of the problem scope:



<ul style="display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start;">
<li ng-repeat="items-in-some-source">
<div>
<!-- some stuff -->
<div>
<!-- some other stuff -->
</div>
<div style="position:relative;" ng-include="some-menu-template.html"></div>
</div>
</li>
</ul>


This is the expected result, with menu closed on the top row, and some examples with an open menu on the following rows. Note how the <li id=D> element behaves, and also note that the number of <li> elements is dynamic:



enter image description here



This is what happens now, notice how <li id=D> overflows the flex container:



enter image description here



So, is there any way to achieve this using just css? I prefer not to use a Javascript solution for this.










share|improve this question
























  • can you add a snippet / fiddle too?

    – kukkuz
    Mar 24 at 12:21













2












2








2








I have a <ul> element as flex container with row direction. Each <li> element has a menu contained inside a div, that opens up towards the right when some event occurs.



The problem, is that from some <li> onwards, the menu flows outside the right side of the flex container boundaries.



What I want, is that the menu will know when to stretch rightward from its parent <li>, and when to stretch leftward, depending on whether enough space is still available on the right or not.



This is a skeleton of the problem scope:



<ul style="display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start;">
<li ng-repeat="items-in-some-source">
<div>
<!-- some stuff -->
<div>
<!-- some other stuff -->
</div>
<div style="position:relative;" ng-include="some-menu-template.html"></div>
</div>
</li>
</ul>


This is the expected result, with menu closed on the top row, and some examples with an open menu on the following rows. Note how the <li id=D> element behaves, and also note that the number of <li> elements is dynamic:



enter image description here



This is what happens now, notice how <li id=D> overflows the flex container:



enter image description here



So, is there any way to achieve this using just css? I prefer not to use a Javascript solution for this.










share|improve this question
















I have a <ul> element as flex container with row direction. Each <li> element has a menu contained inside a div, that opens up towards the right when some event occurs.



The problem, is that from some <li> onwards, the menu flows outside the right side of the flex container boundaries.



What I want, is that the menu will know when to stretch rightward from its parent <li>, and when to stretch leftward, depending on whether enough space is still available on the right or not.



This is a skeleton of the problem scope:



<ul style="display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start;">
<li ng-repeat="items-in-some-source">
<div>
<!-- some stuff -->
<div>
<!-- some other stuff -->
</div>
<div style="position:relative;" ng-include="some-menu-template.html"></div>
</div>
</li>
</ul>


This is the expected result, with menu closed on the top row, and some examples with an open menu on the following rows. Note how the <li id=D> element behaves, and also note that the number of <li> elements is dynamic:



enter image description here



This is what happens now, notice how <li id=D> overflows the flex container:



enter image description here



So, is there any way to achieve this using just css? I prefer not to use a Javascript solution for this.







css flexbox






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 at 11:56







Dondey

















asked Mar 24 at 10:10









DondeyDondey

11410




11410












  • can you add a snippet / fiddle too?

    – kukkuz
    Mar 24 at 12:21

















  • can you add a snippet / fiddle too?

    – kukkuz
    Mar 24 at 12:21
















can you add a snippet / fiddle too?

– kukkuz
Mar 24 at 12:21





can you add a snippet / fiddle too?

– kukkuz
Mar 24 at 12:21












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322679%2fdynamically-changing-div-alignment-inside-a-flexbox%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55322679%2fdynamically-changing-div-alignment-inside-a-flexbox%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해