Bonjour,
je cherche à réaliser un tableau, qui s'adapte en fonction de son contenu, l'idée est simple, mais j'ai l'impression que je vais jamais y arriver, je n'arrive pas à comprendre ce qui pose problème, pourtant j'ai tout essayé, position absolue, float, inline-block... mais .content ne veut rien savoir !
en image :
http://img11.hostingpics.net/pics/20386265ex.jpg
Une idée ?
je cherche à réaliser un tableau, qui s'adapte en fonction de son contenu, l'idée est simple, mais j'ai l'impression que je vais jamais y arriver, je n'arrive pas à comprendre ce qui pose problème, pourtant j'ai tout essayé, position absolue, float, inline-block... mais .content ne veut rien savoir !
en image :
http://img11.hostingpics.net/pics/20386265ex.jpg
.content {
background-color:#0C0;
height:auto;
width:610px;
min-height:100px;
}
.title{
width: 100%;
height:20px;
border:1px solid red;
float:left;
}
.left {
width: 100px;
height:100%;
border:1px solid black;
float:left;
}
.right {
width: 500px;
height:100%;
border:1px solid blue;
float:right;
}
Une idée ?