Utilizando o codigo abaixo, como faço para um link no peinel esquerdo abra na div "texto"
<!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>
<title>.:: Teste ::.</title>
<style
type="text/css">
body
{
margin:0;
padding:0;
background-color: #e9e9e9;
}
#conteiner
{
position: relative;
width: 1002px;
min-height: 100%;
margin: 0 auto;
border: 1px solid #cccccc;
background-color: #ffffff;
}
.header
{
position: relative;
width: 1002px;
height: 100px;
border-bottom: 1px solid #cccccc;
}
.conteiner
{
position: relative;
min-height: 300px;
height: 100%;
padding-bottom: 10px;
}
.panelLeft
{
float: left;
width: 120px;
background-color: #e9e9e9;
padding: 10px;
}
.text
{
float: left;
width: 700px;
min-height: 350px;
height: 100%;
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc;
padding: 10px;
}
.panelRight
{
float: left;
width: 120px;
background-color: #e9e9e9;
padding: 10px;
}
.clear
{
clear: both;
}
.footer
{
position: relative;
width: 1002px;
height: 50px;
border-top: 1px solid #cccccc;
}
</style>
</head>
<body>
<div
id="conteiner">
<div
class="header">
Cabeçalho
</div>
<div
class="conteiner">
<div
class="panelLeft">Painel Esquerdo</div>
<div
class="text">Texto.</div>
<div
class="panelRight">Painel Direito</div>
</div>
<div
class="clear"></div>
<div
class="footer"><!-- INÍCIO DA DIV RODAPÉ -->
Rodapé
</div>
</div>
</body>
</html>