Category: css
CSS filter opacity for cross-browser transparency
Solution To reach almost all users now (in 2015) : opacity:0; filter: "alpha(opacity=0)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; The full CSS cross-browser (some might be useless now) opacity:0; filter: "alpha(opacity=0)"; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -moz-opacity: 0.5; -khtml-opacity: 0.5;
Why are div inline-block rendered differently with text versus no-text
It is because when there is text, the browser switch the vertical-align property. To have it consistent, you can thus just set all div to vertical-align:bottom;
Recent Comments