我有一个流畅的布局,并且正在学习/使用 Less.js 作为我的 CSS。
我有一个 div 'A' 需要考虑用户视图框,减去另一个 div 'B' 高度(以 % 为单位),最后减去另一个 div 'C' 以像素为单位。
这是我认为可行但不可行的方法:
@menubarsHeight: 7%; // declaring variable with div 'B' 's height.
@ttlHeight: '$(window).height()'; // calculating height using jquery
@midParentHeight: -20px + @didParentHeight - @menubarsHeight; // calculating the height based on the above two variables, -20px is the height of div 'C'.