问题标签 [equal-heights]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
layout - Full height layout with Header, footer, sidebar and content divided into 4 equal boxes
I am trying to do the layout that can be seen in the image below:
It is full screen, the header and footer have fixed height (60px), the green sidebar is 200px wide; both the sidebar and the section on the right side occupy the entire available space on the y axis.
For wide screens, I want to divide the right side into 4 equal boxes, displayed 2 by 2.
For medium and small screens (< 768px), I want to display the 4 equal boxes 1 by 4, like the image below:
The HTML I have:
The CSS I have:
How do I style those red boxes to achieve the 2 layouts, if possible, without using display:table and display:table-cell, as this will create problems with positioning items absolutely inside the red boxes on Firefox?
Thank you!
javascript - 在调整大小时重新计算高度
请参阅 CODEPEN 以了解清楚:http: //codepen.io/geochanto/pen/LGNWML
所以我有这段代码来计算链接的高度,然后将它们全部设为最高链接的高度,并在顶部添加一些负边距,以便在它们各自的父项中垂直居中对齐它们。一切都按我的意愿工作,除了,我一直试图让这个高度重新计算并使用各种方法应用于<li>
窗口<a>
调整大小,但没有一个奏效。
我已经尝试过这些,但也许我的语法是错误的,idk:
javascript - 画廊网格滑块响应等高框
我想创建一个具有等高框响应的画廊网格滑块。
示例 650px 宽及以上 3 列和 2 行。
550px 宽及以下 2 列和 3 行。
450 像素宽且低于 1 列和 1 行。
我现在一直在使用这个 jQuery 插件https://github.com/liabru/jquery-match-height。
我可以将它与其他插件滑块一起使用还是有其他选择?
jquery - 等高jquery的问题
我有一个 id=group1port 的 div。
这个 div 里面有多个 div,一个是 id group1porteq。
我正在使用相等的高度来使 div 的高度相同,但是,就我所拥有的而言,它当前会改变所有 div 的高度,而我只希望它影响 div group1porteq。我已经尝试过 ('#group1port div.group1porteq') 但这不起作用。我也尝试过完全删除“div”,但这也不起作用。也尝试将其更改为 ('#group1porteq div') ,然后这只会使该 div 内的所有 div 相等。
“div class="portlet light bordered" id="group1porteq"" 是我需要具有相同高度的两个 div
我有 div,里面都有多个 div,我试图让 1 个 div 的高度相等。这是脚本的示例。
这是代码示例
javascript - EqualHeight 不适用于 Ajax 加载更多
我目前正在开发一个体育网站,我有 Ajax 分页和无限滚动插件来加载更多帖子而不是分页。我使用 equalheights 使标题的 Div 容器连续相同。equalheight 功能仅适用于第一组帖子,但无法处理已加载的帖子。以下是我的代码片段:
等高JQuery
和循环
我期待你的帮助
html - 如何在纯css中设置较大列的高度等于小列?
我正在尝试制作 2 个具有相同高度的 div:
http://image.prntscr.com/image/32ca3f340fba4e2dbd3c7d1e434f0938.png
例子
我希望动态(大一)div 与静态(小一)div 具有相同的高度。动态 div 总是比静态 div 长。我必须用css(没有jquery)来做。我已经找到了几种如何使静态 div 与动态一样大的解决方案(例如 table 或 flex),但我找不到任何解决方案如何使动态与静态一样小。
CSS - 等高列?- 不是答案。这里的柱子都和最长的柱子一样大。
再一次:我需要使动态 div像静态一样小。动态 div 应该有滚动条。
另一个限制 -父级、静态和动态 div高度/宽度不应设置为 px 中的某个永久值。
请你帮助我好吗?