In CSS, are fluid margins proportional to each other possible without calc()?












0















I have a textblock element with a max-width, and I'd like to have its left and right margins in some proportion to each other, let's say one of them half the width of the other, and to keep those proportions as the window size changes. Is this possible in older browsers that don't support calc() or flexbox? I suppose what I'm really asking is if it's doable with percentages?




+--------+-----------+----------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←--→ | | ←----------→ |
| | | |
+--------+-----------+----------------+

+------------+-----------+------------------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←------→ | | ←------------------→ |
| | | |
+------------+-----------+------------------------+









share|improve this question

























  • we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

    – Temani Afif
    Nov 20 '18 at 21:06











  • I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

    – typo
    Nov 20 '18 at 21:13
















0















I have a textblock element with a max-width, and I'd like to have its left and right margins in some proportion to each other, let's say one of them half the width of the other, and to keep those proportions as the window size changes. Is this possible in older browsers that don't support calc() or flexbox? I suppose what I'm really asking is if it's doable with percentages?




+--------+-----------+----------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←--→ | | ←----------→ |
| | | |
+--------+-----------+----------------+

+------------+-----------+------------------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←------→ | | ←------------------→ |
| | | |
+------------+-----------+------------------------+









share|improve this question

























  • we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

    – Temani Afif
    Nov 20 '18 at 21:06











  • I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

    – typo
    Nov 20 '18 at 21:13














0












0








0








I have a textblock element with a max-width, and I'd like to have its left and right margins in some proportion to each other, let's say one of them half the width of the other, and to keep those proportions as the window size changes. Is this possible in older browsers that don't support calc() or flexbox? I suppose what I'm really asking is if it's doable with percentages?




+--------+-----------+----------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←--→ | | ←----------→ |
| | | |
+--------+-----------+----------------+

+------------+-----------+------------------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←------→ | | ←------------------→ |
| | | |
+------------+-----------+------------------------+









share|improve this question
















I have a textblock element with a max-width, and I'd like to have its left and right margins in some proportion to each other, let's say one of them half the width of the other, and to keep those proportions as the window size changes. Is this possible in older browsers that don't support calc() or flexbox? I suppose what I'm really asking is if it's doable with percentages?




+--------+-----------+----------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←--→ | | ←----------→ |
| | | |
+--------+-----------+----------------+

+------------+-----------+------------------------+
| | | |
| margin | textblock | margin |
| | | |
| 1/2x | | 1x |
| ←------→ | | ←------------------→ |
| | | |
+------------+-----------+------------------------+






css






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 20:51







typo

















asked Nov 20 '18 at 18:16









typotypo

1364




1364













  • we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

    – Temani Afif
    Nov 20 '18 at 21:06











  • I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

    – typo
    Nov 20 '18 at 21:13



















  • we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

    – Temani Afif
    Nov 20 '18 at 21:06











  • I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

    – typo
    Nov 20 '18 at 21:13

















we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

– Temani Afif
Nov 20 '18 at 21:06





we need more precision on old browser, it's for sure about IE, but we need to know which version because there is big difference between old IE

– Temani Afif
Nov 20 '18 at 21:06













I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

– typo
Nov 20 '18 at 21:13





I guess starting with the version the supports max-width, which seems to be 7, according to Can I Use....

– typo
Nov 20 '18 at 21:13












1 Answer
1






active

oldest

votes


















1














You can simulate such behavior using flexbox and hidden elements where you apply different flex-grow in order to control how to divide the free space:






.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>








share|improve this answer
























  • Interesting approach, but flexbox is even less supported than calc.

    – typo
    Nov 20 '18 at 20:26






  • 1





    @typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

    – Temani Afif
    Nov 20 '18 at 20:33











  • calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

    – Heretic Monkey
    Nov 20 '18 at 20:53













  • Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

    – typo
    Nov 20 '18 at 21:00













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%2f53399130%2fin-css-are-fluid-margins-proportional-to-each-other-possible-without-calc%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You can simulate such behavior using flexbox and hidden elements where you apply different flex-grow in order to control how to divide the free space:






.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>








share|improve this answer
























  • Interesting approach, but flexbox is even less supported than calc.

    – typo
    Nov 20 '18 at 20:26






  • 1





    @typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

    – Temani Afif
    Nov 20 '18 at 20:33











  • calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

    – Heretic Monkey
    Nov 20 '18 at 20:53













  • Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

    – typo
    Nov 20 '18 at 21:00


















1














You can simulate such behavior using flexbox and hidden elements where you apply different flex-grow in order to control how to divide the free space:






.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>








share|improve this answer
























  • Interesting approach, but flexbox is even less supported than calc.

    – typo
    Nov 20 '18 at 20:26






  • 1





    @typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

    – Temani Afif
    Nov 20 '18 at 20:33











  • calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

    – Heretic Monkey
    Nov 20 '18 at 20:53













  • Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

    – typo
    Nov 20 '18 at 21:00
















1












1








1







You can simulate such behavior using flexbox and hidden elements where you apply different flex-grow in order to control how to divide the free space:






.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>








share|improve this answer













You can simulate such behavior using flexbox and hidden elements where you apply different flex-grow in order to control how to divide the free space:






.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>








.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>





.container {
display:flex;
}
.box {
max-width:300px;
width:100%;
height:50px;
background:red;
}
.container:before {
content:"";
flex-grow:1;
}
.container:after {
content:"";
flex-grow:2;
}

<div class="container">
<div class="box"></div>
</div>






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 20 '18 at 18:26









Temani AfifTemani Afif

77.3k94490




77.3k94490













  • Interesting approach, but flexbox is even less supported than calc.

    – typo
    Nov 20 '18 at 20:26






  • 1





    @typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

    – Temani Afif
    Nov 20 '18 at 20:33











  • calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

    – Heretic Monkey
    Nov 20 '18 at 20:53













  • Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

    – typo
    Nov 20 '18 at 21:00





















  • Interesting approach, but flexbox is even less supported than calc.

    – typo
    Nov 20 '18 at 20:26






  • 1





    @typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

    – Temani Afif
    Nov 20 '18 at 20:33











  • calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

    – Heretic Monkey
    Nov 20 '18 at 20:53













  • Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

    – typo
    Nov 20 '18 at 21:00



















Interesting approach, but flexbox is even less supported than calc.

– typo
Nov 20 '18 at 20:26





Interesting approach, but flexbox is even less supported than calc.

– typo
Nov 20 '18 at 20:26




1




1





@typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

– Temani Afif
Nov 20 '18 at 20:33





@typo if it's about support you should mention it so we can know where you want this to be supported. I thought you simply don't want to use calc()

– Temani Afif
Nov 20 '18 at 20:33













calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

– Heretic Monkey
Nov 20 '18 at 20:53







calc is supported by all major browsers... flexbox is actually supported in more browsers than calc...

– Heretic Monkey
Nov 20 '18 at 20:53















Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

– typo
Nov 20 '18 at 21:00







Temani Afif, you're right; edited. Heretic Monkey, I know major browsers support both. I'm making a simple single-page book, and I'd like it to work even on ancient browsers, because there's no reason it shouldn't on account of fancy margins.

– typo
Nov 20 '18 at 21:00






















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%2f53399130%2fin-css-are-fluid-margins-proportional-to-each-other-possible-without-calc%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

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?