LouisBarranqueiro/hexo-theme-tranquilpeak

Add horizontal scroll bar for overflow table

panxiuwen opened this issue · 3 comments

Description

The wide table will overflow in the narrow screen.
QQ截图20220629151039

I hope add the slide bar in the table, just like Typora.
image

👋 @panxiuwen, Could you please share the websites to test that?

I hope add the slide bar in the table, just like Typora

what is typora?

Hi @LouisBarranqueiro Thank you so much for your reply.

My websit use tranquilpeak theme with multi-column tables. The table work well in widescreen devices like PC, but you can see the overflow table in mobile devices.

Typora is a markdown editor, and I hope those two gif Typora,hexo can help you understand what trouble have happened

I appreciate you taking the time to check my issue and getting back to me. I hope my broken English make you understand what I need.

Dear @LouisBarranqueiro Thank you so much for your reply.
I use the Html syntax to solve this problem, just like this

<div style="overflow-x:auto;white-space:nowrap;">
<table>
···
</table>
</div>

And it works well, as I expected
123
I hope this give a reference for the green hand just like me.