I would like two blocks within a parallel-sized div, one with a fixed size, and another that fits exactly in the remaining space.
For example:
div#container {
width: 50%; /* este tamanho se altera */
height: 100px;
}
#esquerdo {
width: 100%
height: 100px;
}
#direito {
width: 40px;
height: 100px;
}
I want the #left and #right tiles side by side to fill the container. see here: link
What should I do?