Should we always try to not to give "height
" to elements in XHTML through CSS?
if yes the i think min-height
would be better idea instead of fixed height.
What cross browser, W3C valid css, non-javascript "min-height" method in css for browser which do not support min-height?
if i add min-height
to any tag example <div>
then in future in more content comes in then will we have to change height of div
or if min-height
is defined then no need.
Should i use min-height
always in place of height
?