CSS
« Previous EntriesHTML tutorials series on girendra.com
Thursday, August 7th, 2008Today I am starting a new html and css tutorials series. It is very useful for the peoples who are seeking the help in html and css. These tutorials will cover the following topics:
What is html and what can I do with HTML
Basic Syntax of HTML
Role of meta tags
Role of headings(h1, h2, […]
Hand as Mouse Cursor in Mozilla Firefox
Tuesday, August 5th, 2008In internet explorer it is possible to use hand as mouse cursor using the following CSS code:
#idname
{
cursor:hand;
}
This code is very fine with internet explorer but it is not compatible with Mozilla Firefox because Firefox does not support the “hand” value of cursor property. If you want hand cursor in Firefox, you have to use the […]
Table to div css conversion
Thursday, July 31st, 2008Are you looking for the table to div and css conversion tool and you have spent a lot of time in finding such tools. Then I will suggest you, don’t waste your time and manually code your websites in div and css.
Actually tables and divs are two different things and there are very few similarities […]
Change style of submit button in html/CSS
Saturday, March 22nd, 2008It is very common practice for webmasters to change default style of submit button in html forms. It is easy to change default background image of button in firefox using CSS and it is equally easy in case of internet explorer but a bit tricky.
Here is the code to change style of button including background […]
Create equal height columns using CSS
Friday, March 21st, 2008Here I am going to explain you the steps to create equal height columns without using image.
1. First of all you need to create a container and two columns inside the container. Here is the code:
<div id=”container”>
<div class=”leftcol”>This is column 1</div>
<div class=”rightcol”>This is column 2</div>
</div>
____________________________________________
Now make overflow of container hidden in style sheet