Posts Tagged ‘develop’

IE6 CSS Fixer – inline-block

IE6 CSS Fixer tips to knowSuppose it is unnecessary to explain in details the specifics of the inline-block display value. The main problem with it is that it has no support in older browser versions. IE6 and IE7 have partial support only while FF2 has –moz specific support. Let’s try to use the following to fix the problem…

Continue Reading...

Conditional CSS

Conditional CSS tips to knowIt is desirable that browser specific bugs should be targeted and fixed each browser specifically with no impact on the way general CSS is written. If a bug is fixed in a certain browser version, we need a possibility to remove fixes without worrying about browser compatibility.

Continue Reading...

Accessible Forms

accessible forms to knowThe accessibility for forms is important issue to consider for making site attractive for the users with disabilities, especially for those who are blind or visually impaired. Thus, it is better to add a number of elements to the form to improve the process of imputing information.

Continue Reading...

Mastering Tables to Make Your Site Look Great

tables creation to knowThere are still a lot of things to learn about mastering tables, even if you know such tags as the table, tr, td and th as well as rowspan and colspan attributes. If you think that table rows make table columns look ugly you can use the colgroup and col tags. So, let’s find out how to make the tables you create better.

Continue Reading...

CSS Grouping and Nesting

CSS Grouping and Nesting to knowIn case the CSS is structured well, you don’t need to use many class and ID selectors. You can just specify properties to selectors within other selectors. Learn more about CSS Grouping and Nesting with examples provided in this article to improve your site and make it look great.

Continue Reading...

Class and ID Selectors Explained

Class and ID Selectors to knowWith the opportunity to define your own selectors in the form of Class and ID selectors you can have the same HTML element presented differently depending on its ID or class. Here you can find samples of HTML refers to the CSS by using the attributes id and class with explanation and tips to use.

Continue Reading...