Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
要素のmargin-bottomをnext()要素の高さに12pxを加えた高さに変更しようとしています。次のことを試しましたが、うまくいきません。
$("div.entry-content").css("margin-bottom", $(this).next().outerHeight() + 12 + "px");
何がうまくいかないのか分かりますか?
これを試して:
$("div.entry-content").css("margin-bottom", function(){ return $(this).next().outerHeight() + 12 + "px" })