
Untitled
By: a guest on
May 22nd, 2012 | syntax:
None | size: 0.50 KB | hits: 13 | expires: Never
CSS - Float to max width
#container {
max-width: 800px;
min-width: 500px;
}
.profile {
float: left;
width: 100px;
}
.info {
float: left:
min-width: 400px;
max-width: 700px;
}
<div id="container">
<div class="profile">
IMG
</div>
<div class="info">
INFO
</div>
</div>
#container {
width: 800px;
clear: both;
overflow: hidden;
}
.profile {
float: left;
width: 100px;
}
.info {
float: left:
min-width: 400px;
max-width: 700px;
}