.newEventItem .eventDateInfo .eventVenue
{
display: block;
color: #CCC;
overflow: hidden;
height: expression(this.scrollHeight > 27 ? "30px" : "auto");//is css support this?
max-height: 30px;
}
.newEventItem .eventDateInfo .eventVenue { display: block; color: #CCC; overflow: hidden; height: expression(this.scrollHeight > 27
Share
This is actually IE’s Dynamic Property.
You can read more in this msdn article
About Dynamic Properties
Also read this one
Ending Expressions