In WPF, you can set the column width to take up the remaining space by setting the width to the star. Will there be something similar in future versions of HTML or CSS?
Example:
<div style="float: left; width: 50px;"> Occupies 50px of the page width </div> <div style="float: left; width: 1*;"> Occupies 25% of the rest of the page width </div> <div style="float: left; width: 3*;"> Occupies 75% of the rest of the page width </div>
This will really help web developers if it is implemented in future versions of browsers.
source share