css - jQuery. fadeIn() "inline-block" elements sets them to block -
this question has answer here:
- how fade display: inline-block 5 answers
i need fade in hidden divs hidden display:none. when faded in, need display "inline-block" not "block" can display inline each other rather drop below each other. possible?
.sectionblock{ width:163px; height: 261px; padding:5px 5px; position: relative; /*display: inline-block;*/ display: none; overflow: hidden; margin: 0 6px 11px 6px; }
.
... $('.sectionblock').fadein('slow'); ...
try using .fadeto()
instead. far i'm aware, doesn't affect display
property.
Comments
Post a Comment