Multiple entries next to each other

Is it possible to have 3 number entries next to each other horizontally?
Maybe with CSS

May be this?

1 Like

Something like that?

<pre><span><style>

div[id*='screenScrollView'] > div > :nth-child(1) {
width: 33% !important
}

div[id*='screenScrollView'] > div > :nth-child(2) {
width: 33% !important;
position: relative !important;
top: -85px !important;
left: 33% !important;
}

div[id*='screenScrollView'] > div > :nth-child(3) {
width: 33% !important;
position: relative !important;
top: -170px !important;
left: 66% !important;
margin-bottom: -160px !important;
}
5 Likes