Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Saturday, August 30, 2008

HTML CSS Box reference

Margin Border and Padding Reference


http://www.w3.org/TR/css3-box

Friday, August 29, 2008

Transparent DIV SPAN for Internet Explorer, Firefox

Style sheet:
.transparency
{
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}

Apply code:
<div class="transparency">A transparent div.</div>
<img src="image_basic.jpg" alt="Sample" class="transparency" />

Thursday, August 21, 2008

How to vertical align the text within a text box

Use padding-top tab in CSS style.

For an example
<input type="text" style="width:140px; height:24px; padding-top:4px; font-family:Tahoma; font-size:18px" />

Result