<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<rss version="0.92">
<channel>
	<title>CSS HACK</title>
	<link>http://visitingnepal.com/csshack</link>
	<description>CSS HACK TOOLS AND TECHNIC</description>
	<lastBuildDate>Tue, 08 Sep 2009 11:47:50 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Customize Scrollbar</title>
		<description>

Cusomizable Scrollbar

My clients send indesing file of  customize scrollbar . I use to laugh at them about customize scrollbar, because it could not be done through css .  Customize scrollbar is more better than deafult browser's scrollbar . I have search so many time to find out customize scrollbar . ...</description>
		<link>http://visitingnepal.com/csshack/archives/11</link>
			</item>
	<item>
		<title>Centering web site through table with valid html and css</title>
		<description>&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&#62;
&#60;head&#62;
&#60;title&#62;Centering site through html&#60;/title&#62;


&#60;style type="text/css"&#62;

body,html{
height:100%;
margin:0px;
padding:0px;
overflow:hidden;
}
.site{
height:100%;
background:#333;
}
.siteTd{
height:100%;
vertical-align:middle;
text-align:center;

}
.page{
margin:0 auto;
}
.pageTd{
height:400px;
}
&#60;/style&#62;
&#60;/head&#62;
&#60;body&#62;


&#60;table width="100%" border="0" cellspacing="0" cellpadding="0"  class="site"&#62;
&#60;tr&#62;
&#60;td   class="siteTd"&#62;
&#60;table width="1024" border="0" cellspacing="0" cellpadding="0" bgcolor="#999999" class="page"&#62;
&#60;tr&#62;
&#60;td  class="pageTd"&#62;&#38;nbsp;&#60;/td&#62;


&#60;/tr&#62;
&#60;/table&#62;&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;


&#60;/body&#62;
&#60;/html&#62;

Note : I have roughly include style in same page . Please make seperate css and link in this page. </description>
		<link>http://visitingnepal.com/csshack/archives/10</link>
			</item>
	<item>
		<title>Hanging banner box in centering site</title>
		<description>

Handin Banner in right side in centering site

Download : http://www.visitingnepal.com/csshack/zip/hangingBannerInCenterSite.zip </description>
		<link>http://visitingnepal.com/csshack/archives/9</link>
			</item>
	<item>
		<title>Word Break in FF and IE</title>
		<description>

Download Script : http://www.visitingnepal.com/csshack/zip/wordBreak.zip

&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml"&#62;
&#60;head&#62;
&#60;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&#62;
&#60;title&#62;Word Break in All Browser&#60;/title&#62;

&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml"&#62;
&#60;head&#62;
&#60;title&#62;Untitled Document&#60;/title&#62;
&#60;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&#62;
&#60;style&#62;
/* Here you can increase width */
#url { border:1px solid black; width:200px; }
p {border:1px solid blue; }
&#60;/style&#62;
&#60;script&#62;
function wordWrap(){
/******
* ...</description>
		<link>http://visitingnepal.com/csshack/archives/8</link>
			</item>
	<item>
		<title>css hack in safari 3.0</title>
		<description>@media screen and (-webkit-min-device-pixel-ratio:0){
   #uploaden{
      margin-top:-180px;
   }
} </description>
		<link>http://visitingnepal.com/csshack/archives/7</link>
			</item>
	<item>
		<title>Css comment hack for all IE browser</title>
		<description>Through html comment we can do css comment hack in All ie brower as per needed. . Here we have code mania for css hack for IE. it is w3c validate code also.
 
&#60;!--[if IE]&#62;
conditional for Internet Explorer
&#60;![endif]--&#62;

&#60;!---[if IE 5]&#62;
Conditional comment this is Internet Explorer 5
&#60;![endif]--&#62;

&#60;!--[if IE 5.0]&#62;
Conditional comment this ...</description>
		<link>http://visitingnepal.com/csshack/archives/6</link>
			</item>
	<item>
		<title>Centering Site through div</title>
		<description>&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&#62;
&#60;head&#62;
&#60;title&#62;Vertical align&#60;/title&#62;
&#60;meta http-equiv="content-type" content="text/html; charset=utf-8" /&#62;

&#60;style&#62;

html, body {
height: 100%;
margin: 0;
padding: 0;
overflow:hidden;
background:#0000ff
}

* {
margin:0px auto;
padding:0;
}

div#shim {
visibility: hidden;
width: 100%;
height: 50%;
margin-top: -317px;
_margin-top:-318px;
float: left;
}


div#wrapper {


width: 1000px;
height: 635px;
clear: both;
background:red;

position: relative;
top: -317px;

/* IE4ever Hack: Hide from IE4 **/
position: static;
/** end hack */

}

/* Hide from IE5mac \*//*/
div#shim {
display: none;
}
html, ...</description>
		<link>http://visitingnepal.com/csshack/archives/4</link>
			</item>
	<item>
		<title>Minimum height block for multi browser ( IE6, IE7 and FF)</title>
		<description>CSS code 
.block{
display:block;
height:100% !important;
height:100px;
min-height:100px;
max-height:100%;
border:solid 1px green;
width:200px;
} </description>
		<link>http://visitingnepal.com/csshack/archives/3</link>
			</item>
	<item>
		<title>Hello world!</title>
		<description>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging! </description>
		<link>http://visitingnepal.com/csshack/archives/1</link>
			</item>
</channel>
</rss>
