How to detect support for a CSS feature using @supports ?

CSS3 on MoreOnFew.com

With many new CSS features being introduced regularly it has become important to check for the support of these newer CSS properties before we use them. While there are feature detection tools like Modernizr etc, not every time do we actually require to load a JavaScript file to detect a feature alone. You can do … Read more

How to convert LTR website to a RTL Website – LTR to RTL?

CSS3 on MoreOnFew.com

I’m sure all of us want our websites to be visited and loved by people all over the world. However many a time our visitors could be from countries that follow RTL(Right-To-Left) script. And hence we might have to convert our website from LTR to RTL. By RTL script I mean scripts of languages such as … Read more

Understanding only-of-type CSS pseudo class selector

CSS3 on MoreOnFew.com

Let’s be honest, CSS sometimes can get a little tricky and confusing to understand. Especially with the onset of CSS3 and all these new CSS3 selectors and pseudo classes, it’s quite possible that many of us might still be trying to catch up with the new selectors. Well, only-of-type is one such new CSS3 pseudo … Read more

How to hide arrows from Number input?

CSS3 on MoreOnFew.com

I am sure that by now you would have used various new input types available as a part of HTML5. Many of these input types have eliminated the requirement for JavaScript too in many scenarios. One such new input type is the Input type number. The syntax for the same is <input type=”number”> . The … Read more