Skip to content

Instantly share code, notes, and snippets.

@oleksapro
Last active August 27, 2015 09:11
Show Gist options
  • Save oleksapro/70f15233f7df5b8e32a9 to your computer and use it in GitHub Desktop.
Save oleksapro/70f15233f7df5b8e32a9 to your computer and use it in GitHub Desktop.
js
// http://www.codeatlarge.com/percentage-minus-pixels/
var $wrap = $(".wrap");
var $navitem = $(".wrap nav .navitem");
$(window).resize(function(){
var totalWidth = $wrap.width();
var calcWidth = (totalWidth - 200) / 3;
$navitem.width(calcWidth);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment