Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of deprecated CSS properties

Tags:

css

deprecated

Is there a list of CSS properties that are deprecated? My friend is telling me that min-height is deprecated and I want to be sure that I'm not using any other deprecated property. Also, I want to check if it is true.


1 Answers

As far as I'm aware the min-height property is not deprecated and can be used as normal. For an excellent list of CSS properties and their compatibility with various browsers, try this site.

According to the site I linked to above, the min-height property is fully supported by every major browser except Internet Explorer 6 (in which it is only supported when applied to td elements).

like image 106
James Allardice Avatar answered Sep 23 '25 03:09

James Allardice