min-width和max-width在position fixed中。

huangapple go评论66阅读模式
英文:

min-width and max-width in position fixed

问题

如何使min-widthmax-width在定位元素中起作用?

有效的部分

  • 灰色标题必须始终填满窗口宽度的100%
  • 绿/黄元素必须根据窗口宽度调整大小(使用min-width / max-width
  • 蓝色标题是绿色标题的延伸,但没有灰色背景

不起作用的部分

  • 绿色/蓝色/黄色元素在调整窗口大小时必须始终具有相同的宽度(蓝色元素除外)

如何使蓝色元素按照描述的方式工作(没有灰色背景)?如果有更好的解决方案,我也愿意接受 min-width和max-width在position fixed中。

蓝色标题固定为min-width

https://jsfiddle.net/wahdr9j7/4/

英文:

How to make min-width and max-width work in positioned elements?

What works

  • The gray header must fill out 100% of the window width at all times
  • The green/yellow elements must resize depending on window width (min-width / max-width)
  • The blue header is an extension of the green header, but without the gray background

What doesn't work

  • The green/blue/yellow elements must follow the same width at all times when you resize the window (the blue element does not)

How to make the blue element work as described (without the gray background)? I'm open if there is a better solution min-width和max-width在position fixed中。

The blue header is fixed to min-width

https://jsfiddle.net/wahdr9j7/4/

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-css -->

:root {
  --header-height: 50px;
  --page-header-height: 50px;
  --sidebar-width: 100px;
  --content-width-min: 400px;
  --content-width-max: 500px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

header,
#sidebar {
  position: fixed;
  top: 0;
  left: 0
}


/* this gray header has to fill up the full width */

header {
  width: 100%;
  height: var(--header-height);
  background: gray;
}

header,
main {
  padding-left: var(--sidebar-width);
}

#header {
  height: 100%;
  background: green;
}

#page_header {
  position: absolute;
  height: var(--page-header-height);
  background: blue;
}

#sidebar {
  width: var(--sidebar-width);
  min-height: 100%;
  background: red;
}

#header,
#page_header_content,
#content {
  max-width: var(--content-width-max);
  min-width: var(--content-width-min);
}

#content {
  background: yellow;
}

main {
  padding-top: calc(var(--header-height) + var(--page-header-height));
}

<!-- language: lang-html -->

&lt;header&gt;
  &lt;div id=&quot;header&quot;&gt;
    main header
    &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;page_header&quot;&gt;
    &lt;div id=&quot;page_header_content&quot;&gt;
      page header
      &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/header&gt;
&lt;div id=&quot;sidebar&quot;&gt;
  sidebar
&lt;/div&gt;
&lt;main&gt;
  &lt;div id=&quot;content&quot;&gt;
    content
    &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
  &lt;/div&gt;
&lt;/main&gt;

<!-- end snippet -->

答案1

得分: 1

absolute 定位的 div 应嵌套在设置为 position: relativemin-width div 内。

#page_header 上添加你自定义的 --content-widthmaxmin,而不是在 #page_header_content 上,这样它会在父元素上,就像其他元素一样。

#page_header 设置为 relative,将 #page_header_content 设置为 absolute

英文:

The absolute positioned div should be nested in the min-width div which should be set to position: relative;.

Add your custom --content-width max and min on #page_header instead of #page_header_content so it's on the parent like the others.

Set #page_header to relative and #page_header_content to absolute.

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-css -->

:root {
  --header-height: 50px;
  --page-header-height: 50px;
  --sidebar-width: 100px;
  --content-width-min: 400px;
  --content-width-max: 500px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

header,
#sidebar {
  position: fixed;
  top: 0;
  left: 0
}


/* this gray header has to fill up the full width */

header {
  width: 100%;
  height: var(--header-height);
  background: gray;
}

header,
main {
  padding-left: var(--sidebar-width);
}

#header {
  height: 100%;
  background: green;
}

#page_header {
  position: relative;
  height: var(--page-header-height);
  background: blue;
}

#page_header_content {
  position: absolute;
  width: 100%;
}

#sidebar {
  width: var(--sidebar-width);
  min-height: 100%;
  background: red;
}

#header,
#page_header,
#content {
  max-width: var(--content-width-max);
  min-width: var(--content-width-min);
}

#content {
  background: yellow;
}

main {
  padding-top: calc(var(--header-height) + var(--page-header-height));
}

<!-- language: lang-html -->

&lt;header&gt;
  &lt;div id=&quot;header&quot;&gt;
    main header
    &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;page_header&quot;&gt;
    &lt;div id=&quot;page_header_content&quot;&gt;
      page header
      &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/header&gt;
&lt;div id=&quot;sidebar&quot;&gt;
  sidebar
&lt;/div&gt;
&lt;main&gt;
  &lt;div id=&quot;content&quot;&gt;
    content
    &lt;div style=&quot;text-align:right&quot;&gt;right-aligned&lt;/div&gt;
  &lt;/div&gt;
&lt;/main&gt;

<!-- end snippet -->

Fiddle for your convenience: A fiddle for clarkk

答案2

得分: 0

添加这些样式

#header,
#page_header_content,
#content {
  max-width: var(--content-width-max);
  /* 为更好的响应性,您可以删除 min-width: var(--content-width-min); */
}
#page_header {
  position: absolute;
  height: var(--page-header-height);
  width: 100%;
  padding-right: var(--sidebar-width);
  /* 移除背景: 蓝色 */
}
#page_header_content {
  background: blue;
  height: 100%;
}
英文:

add these styles

#header,
#page_header_content,
#content {
  max-width: var(--content-width-max);
  /* you can remove min-width: var(--content-width-min); for better responsive */
}
#page_header {
  position: absolute;
  height: var(--page-header-height);
  width: 100%;
  padding-right: var(--sidebar-width);
  /* remove background: blue */
}
#page_header_content {
  background: blue;
  height: 100%;
}

huangapple
  • 本文由 发表于 2023年3月31日 16:56:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/75896617.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定