문제

At some point my code is not working for multi lines table with ul. Everything is on link below.

http://jsfiddle.net/eagerwolf/GXxLn/

I added

width: 300px;

to parent element. In real this is limited with div... but never mind issue stays the same...

Does anyone have any idea about this problem?

도움이 되었습니까?

해결책

You are using a cricket bat to play baseball

Use table for tabular layouts

Change your markup, use table, tr, td and not ul, ul are meant for listing items.


If anyways you want to use ul and li for creating a table layout, than you should use display: table; and display: table-cell; which changes the display of the elements, but still, you shouldn't do that, you will find hard to use display: table-row; and such properties as only li can be nested as a direct child to ul element.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top