Hello
Can any body help me with this
The problem is
As the text increses in height the side bar should also increase.
As shown in pic.
[IMG][/IMG]
Can any body help me with this
The problem is
As the text increses in height the side bar should also increase.
As shown in pic.
[IMG][/IMG]
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<style>
body{
margin:0px;
height: 100%;
}
.home1
{
margin-left:20px;
margin-top:20px;
width:350px;
clear:left;
}
.home1_text
{
padding-left:4px;
font:9pt Arial, Helvetica, sans-serif;
float:left;
}
.home1_bar
{
width:15px;
background-color:#90BFCF;
height:100%;
float:left;
}
</style>
<body>
<div class="home1">
<div class="home1_bar"></div>
<div class="home1_text">We intend to assist deserving Indian manufacturers of workshop tools, to export in the world market using our experience and contacts of over 50 years.
</div>
</body>
</html>
Comment