简体   繁体   中英

Is there way to render <table> horizontally when the list exceeds certain length?

I created a visualization with d3 http://jbk1109.github.io/tennisMapWithPlayersListOnHover.html

When mouse hovers over the histogram, a list appears underneath. There are a couple cases when the list becomes too long and I would like the table to grow horizontally beyond certain length.

Is there an optimal way to do this other than checking the length of list and appending a new table element? 在此处输入图片说明

Nice job Brian! I would try to get viewport height with jQuery, and compare it witch table height, something like:

if(table_height > viewport_height) {
    // change table css style to 2 column table
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM