【发布时间】:2014-12-04 18:31:38
【问题描述】:
是否可以通过某些 DIV 宽度或高度来指定特定的 CSS 样式?
类似这样的:
@media screen and (max-width: 1024px)
【问题讨论】:
-
我想不出为什么需要它的充分理由
是否可以通过某些 DIV 宽度或高度来指定特定的 CSS 样式?
类似这样的:
@media screen and (max-width: 1024px)
【问题讨论】:
你可以用 jQuery 做到这一点。
function change_size(){
var window_height = $(window).height();
var div_height = $("#your_id").height();
if(window_height < div_height){
$("#your_id").css({marginTop: "20px", height: "20px"}); //for example
}
}
$(document).ready(function(){
change_size();
});
$(window).resize(function(){
change_size();
});
【讨论】: