Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
A jQuery plugin for equalizing element heights.
If you can, you should use Flexbox instead. See the demo for an example.
For simple, single-row adjustments, Equalizer is a leaner, dependency-free solution.
Include the plugin after you've included jQuery:
<script src="path/to/jquery.min.js"></script>
<script src="path/to/leveller.min.js"></script>
Or use npm and Browserify:
npm install --save jquery
npm install --save leveller
var $ = require('jquery');
require('leveller');
Equalize element heights across rows (uses min-height
on the elements by default):
$('.example .column').leveller();
If you want elements to appear bottom-aligned, you can apply the min-height
adjustment to a child selector instead:
$('.example .column').leveller({
cssSelector: '.column-main'
});
You can also change which property is used for the adjustment. In this case, padding will be added to the top of .column-footer
until the element is correctly sized:
$('.example .column').leveller({
cssSelector: '.column-footer',
cssProperty: 'padding-top'
});
Adjust on window resize (debounce for performance):
// pass along options (if any) the first time
$('.example .column').leveller({ /* ... */ });
$(window).resize(function(){
// calling again on the same elements will retain options
$('.example .column').leveller();
});
Reset tile heights that have been set with Leveller:
$('.example .column').leveller('reset');
Option | Default | Description |
---|---|---|
level | true | Whether or not to level right away by default. |
resetBefore | true | If false , it will not reset the adjustable property before making new adjustments. This can have weird results, but may be necessary if you have other plugins or JS modifying styles. |
cssProperty | 'min-height' | The CSS property to modify to adjust the height. |
heightMethod | 'outerHeight' | The jQuery method to use to determine the element's height. Could also be height or innerHeight . |
offsetMethod | 'offset' | The jQuery method to use to determine the element's position. Could also be position . |
alignment | 'top' | Can also be middle or bottom depending on the default alignment of your elements. |
cssSelector | A child selector within the parent element to modify instead of the parent (useful for adding space between child elements instead of affecting the overall height). | |
columns | If specified, the plugin won't attempt to determine the column count per row. This can help performance if you know the column count will always be the same. | |
adjustBy | If the new heights are just a tad off, specifying this option can allow you to adjust them by a number (2 ) or a CSS property (border-top ). |
Leveller adjusts elements at the time it's called. If images, fonts or other external resources affect the layout later, the sizing will be off.
The solution is to call Leveller when the elements are ready to be equalized:
// run leveller after the page has loaded
$(window).load(function(){
$('.example .column').leveller();
});
This can also happen if you attempt to equalize elements that aren't visible yet (in a modal, for example). This can be resolved the same way:
// run leveller after the Bootstrap modal is shown
$('#myModal').on('shown.bs.modal', function(){
$(this).find('.column').leveller();
});
This is most likely due to margin collapsing, and there are a few ways you can attempt to resolve.
You can stop margin collapsing in CSS using the clear
property.
You can try specifying a different property that doesn't collapse (for example, padding-bottom
instead of margin-bottom
).
Finally, there's the adjustBy
option which lets you tweak height adjustments:
$('.example .column').leveller({
cssSelector: '.column-footer',
cssProperty: 'margin-top'
adjustBy: 4 // height adjustments will be 4px greater
});
If we wanted to base the value on the margin that's collapsing, we could do something like this:
$('.example .column').leveller({
cssSelector: '.column-footer',
cssProperty: 'margin-top'
adjustBy: parseInt($('.column-body').css('margin-bottom'), 10)
});
But it's probably cleaner to use a different property or tweak your CSS!
Released under the MIT License.
FAQs
A jQuery plugin for equalizing element heights.
The npm package leveller receives a total of 0 weekly downloads. As such, leveller popularity was classified as not popular.
We found that leveller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.