Html timeline inside TR tag

Hello Guys,
I am trying to put a timeline inside a table row

this is the code :

Basically what i want is to make the timeline connected/joined without any gap created because of td cells.

Need help. Thanks

White-space can be hard to get rid of, so if you just want a quick fix you could try and change the list margin: 0; to margin: -1px;. to close the gap.

Like:

ol.progtrckr {
        display: table;
        list-style-type: none;
        margin: -1px; /* to close the gap between the lists */
        padding: 0;
        table-layout: fixed;
        width: auto;
    }

OTOH this could be a fun problem to solve if you like.

Why not just put the green border on the table, and then re-align the ticks slightly to suit?

1 Like

Brilliant solution @ralphm!

1 Like

I am not very familiar with css. Can I please have a jsfiddle link. Thanks

In your posted code, add {padding:0} to the td element:

td {
    border: none;
    padding:0;  /* ADD Me */
}

Can you do that without needing a new fiddle?

2 Likes

Works Thanks

1 Like

2 posts were split to a new topic: How to eliminate space above timeline

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.