daneden / Baseline.js

A simple jQuery plugin for restoring vertical baselines thrown off by odd image sizes
http://daneden.me/baseline
699 stars 55 forks source link

Use modulo division to calculate adjustment #20

Closed coreyward closed 10 years ago

coreyward commented 10 years ago

This is a textbook case for modulo and has the additional benefit of the smallest margin necessary being set (between 0..(baseline - 1)) while continuing to work for images with a height < baseline.

daneden commented 10 years ago

Excellent work! Thanks!