html - Can We Use CSS for Images Which are Only Wider than A Fixed Size? -
i want add style of images of blog, however, if use css style applied images. problem small images (<500px wide) bad style.
is there method available (maybe conditional css) archiving want.
afaik there's no pure css way it's quite easy javascript (and jquery):
$("img").each(function() { if ($(this).width() > 500) $(this).addclass("large-img"); }); then
.large-img { /* special styles here */ ... }
Comments
Post a Comment