With reference to my previous post Browser detection using Jquery javascript we can apply browser specific CSS to HTML elements. Use CSS hacks below. Chrome:…
-Web Developer Solution
CSS questions which are mostly asked in interview
With reference to my previous post Browser detection using Jquery javascript we can apply browser specific CSS to HTML elements. Use CSS hacks below. Chrome:…
CSS 3 rotate() transform property rotate’s div consider axis of rotation at center. See below example. Example: <style> .demo { display: block;width: 10px;height: 200px;border: 1px…
If you are playing any flash/brightcove video using object tag and you want to show custom play button or image on video you can use…
We can apply hover effect to only enabled buttons using :not selector of css3. Example: .button:hover:not(.disabled){ background:#ccc; }
pointer-events: none is a css property which disables all events like hover, click, touch, mouseenter, mouseleave etc. on any html element. Example: .disabled{ pointer-events:none; }…