LouisBarranqueiro / hexo-theme-tranquilpeak

:lipstick: A gorgeous responsive theme for Hexo blog framework
https://louisbarranqueiro.github.io/hexo-theme-tranquilpeak/
GNU General Public License v3.0
1.86k stars 484 forks source link

Add horizontal scroll bar for overflow table #705

Closed panxiuwen closed 1 year ago

panxiuwen commented 2 years ago

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

LouisBarranqueiro commented 2 years ago

👋 @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?

panxiuwen commented 2 years ago

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.

panxiuwen commented 1 year ago

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.