Shadowfox
02-25-2008, 05:54 AM
Hello everybody,
here's the situation:
I have a <DIV>.
In concern to the layout I wish it to have a minimum of 400px left border.
However, I wish it to retain its content-sensitive auto-expand ability.
That I achieve here:
float: left;
display: table;
width: 500px;
height: 400px;
border-left: 1px solid #ececec;
As far as I know, the "table" display of a page layout DIV interferes with the semantics rules. Thus, it would be similar to making the layout with a <table> tag.
So, is there a workaround for the same functionality?
Thank you very much!
here's the situation:
I have a <DIV>.
In concern to the layout I wish it to have a minimum of 400px left border.
However, I wish it to retain its content-sensitive auto-expand ability.
That I achieve here:
float: left;
display: table;
width: 500px;
height: 400px;
border-left: 1px solid #ececec;
As far as I know, the "table" display of a page layout DIV interferes with the semantics rules. Thus, it would be similar to making the layout with a <table> tag.
So, is there a workaround for the same functionality?
Thank you very much!